/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    color: #091B26;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #FFFFFF;
    padding-top: 100px; /* Espacio para el header fijo */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header fijo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    height: 70px;
    vertical-align: middle;
}

/* Navegación principal */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #142F40;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links ul li a:hover,
.nav-links ul li a.active {
    color: #03A696;
}

.nav-links ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #03A696;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    padding: 10px 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    display: block;
    padding: 8px 15px;
    color: #142F40;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #F3F3F4;
    color: #03A696;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Botón de contacto */
.contact-button a {
    background-color: #03A696;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-right: 20px;
}

.contact-button a:hover {
    background-color: #026873;
}

.contact-button a i {
    font-size: 16px;
    margin-left: 5px;
}

/* Menú de hamburguesa */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #142F40;
    margin: 2px 0;
    transition: 0.3s;
}

.footer-column.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column.newsletter input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.footer-column.newsletter .checkbox-container {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #FFFFFF;
}

.footer-column.newsletter .checkbox-container input[type="checkbox"] {
    margin-right: 5px;
}

.footer-column.newsletter button[type="submit"] {
    background-color: #03A696;
    color: #FFFFFF;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.footer-column.newsletter button[type="submit"]:hover {
    background-color: #026873;
}

.footer-links-small {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.footer-links-small .footer-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    background-color: #142F40;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid #03A696;
    text-align: center;
}

.footer-links-small .footer-link-item:hover {
    background-color: #03A696;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(3, 166, 150, 0.2);
}

.footer-links-small .footer-link-item i {
    font-size: 20px;
    color: #03A696;
    transition: color 0.3s ease;
    margin-bottom: 2px;
}

.footer-links-small .footer-link-item:hover i {
    color: #FFFFFF;
}

.footer-links-small a {
    color: #B0BEC5;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    width: 100%;
    line-height: 1.2;
}

.footer-links-small .footer-link-item:hover a {
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .footer-links-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-links-small {
        grid-template-columns: repeat(4, 1fr);
    }
}

#newsletter-messages {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

#newsletter-messages.hidden {
    display: none;
}

#newsletter-messages.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

#newsletter-messages.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Estilos para el menú móvil */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 999;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu ul li {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #E6E8E9;
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    color: #142F40;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

.mobile-menu ul li a:hover {
    background-color: #F3F3F4;
}

.contact-button-mobile {
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.contact-button-mobile a {
    background-color: #03A696;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-button-mobile a:hover {
    background-color: #026873;
}

/* Hero Section para contacto */
.hero-contacto {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../Imagenes/4.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    margin-top: 0;
}

.hero-contacto h1 {
    position: relative;
    z-index: 1;
    font-size: 3em;
    margin: 0;
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Sección Principal de Contacto */
.contacto-principal {
    padding: 80px 0;
    background-color: #F3F3F4;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Estilos específicos para la página de Contacto */

.form-messages {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none;
}

/* Formulario de Contacto */
.formulario-contacto {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.formulario-contacto h2 {
    font-size: 28px;
    color: #142F40;
    margin-bottom: 15px;
    font-weight: 700;
}

.formulario-contacto > p {
    color: #5A6B7C;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #142F40;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E6E8E9;
    border-radius: 5px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    color: #142F40;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #03A696;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9DA3AB;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    display: inline;
    font-weight: normal;
}

.checkbox-group a {
    color: #03A696;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-enviar {
    background-color: #03A696;
    color: #FFFFFF;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-enviar:hover {
    background-color: #026873;
}

/* Mapa e Información de Contacto */
.mapa-contacto {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mapa-contacto h2 {
    font-size: 28px;
    color: #142F40;
    margin-bottom: 20px;
    font-weight: 700;
}

.mapa-container {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.info-contacto {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: #03A696;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-icon i {
    color: #FFFFFF;
    font-size: 16px;
}

.info-content h4 {
    font-size: 16px;
    color: #142F40;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    color: #5A6B7C;
    margin-bottom: 3px;
    line-height: 1.4;
}

/* Sección de Enlaces de Referencia */


/* Footer */
.main-footer {
    background-color: #142F40;
    color: #FFFFFF;
    padding: 60px 0 20px;
    font-size: 15px;
}

.main-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #B0BEC5;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #026873;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon:hover i {
    animation: rotate360 0.5s ease forwards;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.social-icon i {
    font-size: 18px;
}

.social-icon.facebook:hover {
    background-color: #3b5998;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

.footer-column h3 {
    font-size: 18px;
    color: #03A696;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #03A696;
}

.footer-column ul {
    list-style: none;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #B0BEC5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #03A696;
}

.footer-column.sitemap p {
    color: #B0BEC5;
    margin-bottom: 10px;
}

.footer-column.sitemap p a {
    color: #B0BEC5;
    text-decoration: none;
}

.footer-column.sitemap p a:hover {
    color: #03A696;
    text-decoration: underline;
}

.newsletter input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #37474F;
    border-radius: 5px;
    background-color: #263238;
    color: #FFFFFF;
    font-size: 15px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.newsletter input[type="email"]:focus {
    border-color: #03A696;
    outline: none;
}

.newsletter input[type="email"]::placeholder {
    color: #B0BEC5;
}

.newsletter .checkbox-container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    color: #B0BEC5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.newsletter .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.newsletter .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #263238;
    border: 1px solid #37474F;
    border-radius: 3px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.newsletter .checkbox-container input:checked ~ .checkmark {
    background-color: #03A696;
    border-color: #03A696;
}

.newsletter .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.newsletter .checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.newsletter .checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.newsletter button {
    background-color: #03A696;
    color: #FFFFFF;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

.newsletter button:hover {
    background-color: #026873;
}

.footer-bottom {
    border-top: 1px solid #37474F;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #B0BEC5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* WhatsApp Floating Button - MEJORADO */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.whatsapp-main-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    z-index: 1002;
}

.whatsapp-main-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-main-button i {
    font-size: 42px;
}

/* Efecto de notificación pulsante */
.notification-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background-color: #FF4081;
    border-radius: 50%;
    animation: pulse 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 15px;
    font-weight: bold;
}

.notification-pulse::before {
    content: "3";
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 64, 129, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0);
    }
}

.whatsapp-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.whatsapp-buttons-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-button {
    background: white;
    color: #333;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    width: 160px;
    border: 2px solid transparent;
}

.whatsapp-button i {
    font-size: 18px;
    min-width: 20px;
}

.whatsapp-button.sales {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

.whatsapp-button.operations {
    background: linear-gradient(135deg, #28A745, #20C997);
    color: white;
}

.whatsapp-button.support {
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
}

.whatsapp-button:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Animación de aparición escalonada para los botones */
.whatsapp-buttons-container.active .whatsapp-button:nth-child(1) {
    transition-delay: 0.1s;
}

.whatsapp-buttons-container.active .whatsapp-button:nth-child(2) {
    transition-delay: 0.2s;
}

.whatsapp-buttons-container.active .whatsapp-button:nth-child(3) {
    transition-delay: 0.3s;
}

/* Tooltip para el botón principal */
.whatsapp-main-button::after {
    content: "Contáctanos por WhatsApp";
    position: absolute;
    right: 75px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-main-button:hover::after {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Responsive para WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-main-button {
        width: 60px;
        height: 60px;
    }

    .whatsapp-main-button i {
        font-size: 28px;
    }

    .notification-pulse {
        width: 22px;
        height: 22px;
        font-size: 15px;
    }

    .whatsapp-button {
        width: 140px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .whatsapp-button i {
        font-size: 16px;
    }

    .whatsapp-main-button::after {
        content: "WhatsApp";
        right: 70px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .whatsapp-main-button:hover::after {
        right: 75px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-main-button {
        width: 55px;
        height: 55px;
    }

    .whatsapp-main-button i {
        font-size: 35px;
    }

    .whatsapp-buttons-container {
        gap: 10px;
    }

    .whatsapp-button {
        width: 130px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .whatsapp-main-button::after {
        display: none; /* Ocultar tooltip en móviles muy pequeños */
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links,
    .contact-button {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header {
        padding: 10px 20px;
    }

    .header .logo img {
        height: 60px;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .enlaces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
    }

    .header .logo img {
        height: 50px;
    }
    
    .hero-contacto h1 {
        font-size: 2.5em;
    }
    
    .formulario-contacto,
    .mapa-contacto {
        padding: 30px;
    }
    
    .enlaces-grid {
        grid-template-columns: 1fr;
    }
    
    .main-footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 40px;
        width: 100%;
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 80px;
    }

    .header {
        padding: 8px 10px;
    }

    .header .logo img {
        height: 70px;
    }
    
    .hero-contacto {
        height: 200px;
    }
    
    .hero-contacto h1 {
        font-size: 2em;
    }
    
    .contacto-principal {
        padding: 40px 0;
    }
    
    .formulario-contacto,
    .mapa-contacto {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .main-footer {
        padding: 10px;
    }

    .footer-logo img {
        max-width: 250px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-column p, 
    .footer-column ul li a, 
    .footer-column input[type="email"], 
    .footer-column .checkbox-container, 
    .footer-bottom p {
        font-size: 15px;
    }

    .footer-column button[type="submit"] {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Transiciones para elementos del footer */
.footer-column {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estilo para mensajes de error */
.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* JavaScript para el menú móvil */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}