* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background: #000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
}

/* ================= SPLASH ================= */
#splash {
    position: fixed;
    inset: 0;
    background: url("../D-Sices F/fondo.jpg") center / cover no-repeat;
    background-color: #0a1628;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: fadeOutSplash 1.5s ease forwards;
}

/* ================= LOGO ================= */
#logo {
    width: 880px;
    max-width: 90%;
    animation: fadeInOut 1.5s ease forwards;
}

/* ================= ANIMACIONES ================= */
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOutSplash {
    0%, 90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}

/* ================= CONTENIDO ================= */
#contenido {
    opacity: 0;
    animation: fadeIn 0.5s ease 1.2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ================= BARRA DE NAVEGACIÓN ================= */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 27, 42, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(13, 27, 42, 0.4);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo-link {
    display: flex;
    align-items: center;
    z-index: 101;
}

.logo {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-links a:hover {
    color: #134E5E;
}

/* Botón menú móvil - Oculto por defecto (solo visible en la media query móvil) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animación a "X" cuando el menú está abierto */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ================= CARRUSEL (ENCABEZADO) ================= */
#carrusel {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* evita hueco/salto por la barra de direcciones en móvil */
    overflow: hidden;
}

#carrusel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
    pointer-events: none;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #0a1628;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* ================= IMAGEN REPRESENTATIVA ================= */
.imagen-representativa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    max-width: 450px;
    width: 65%;
    animation: fadeInScale 1s ease 1.5s forwards;
    opacity: 0;
}

.imagen-representativa img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    border-radius: 15px;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255,255,255,0.9);
    width: 30px;
    border-radius: 6px;
}

/* ================= SECCIÓN DE CONTENIDO ADICIONAL ================= */
#contenido-scroll {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7)), url('../D-Sices F/fondo.jpg') center / cover no-repeat;
    background-color: #0a1628;
    background-attachment: fixed;
    padding: 60px 20px;
}

section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.5s ease;
    border-bottom: 2px solid rgba(79, 195, 247, 0.3);
}

section:last-child {
    border-bottom: none;
}

/* Estilos de secciones - sin recuadros */
#quienes-somos {
}

#servicios {
}

#mision {
}

#vision {
}

/* Efecto hover simplificado */
section:hover {
    transform: translateY(-5px);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #4fc3f7;
}

.section-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.section-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #1a1a2e;
}

.section-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.4);
}

.section-image::after {
    content: 'Ver más';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(79, 195, 247, 0.9);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 18px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.section-image:hover::after {
    transform: translateY(0);
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-image:hover img {
    transform: scale(1.05);
}

/* Alternar posición de imagen */
section:nth-child(even) .section-content {
    direction: rtl;
}

section:nth-child(even) .section-content > * {
    direction: ltr;
}

/* ================= ANIMACIONES DE SCROLL ================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ================= ENCABEZADO DE SECCIÓN (sin imagen) ================= */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #4fc3f7;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: #e0e0e0;
}

/* ================= POR QUÉ ELEGIRNOS (GRID) ================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 14px;
    padding: 32px 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 0 12px 30px rgba(79, 195, 247, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    color: #4fc3f7;
    margin-bottom: 18px;
    overflow: hidden;
}

.feature-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #c4c4c4;
}

/* ================= RESEÑAS ================= */
.reviews-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 220px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(13, 27, 42, 0.1);
    padding: 40px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-carousel:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(19, 130, 168, 0.18);
}

.review-slide {
    display: none;
    text-align: center;
    padding: 10px 70px;
}

.review-slide.active {
    display: block;
}

.review-stars {
    color: #4fc3f7;
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.review-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 19px;
    line-height: 1.7;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 18px;
}

.review-author {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #4fc3f7;
    font-weight: 600;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.reviews-carousel .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* ================= BLOQUE CLARO (separador antes del footer) ================= */
.seccion-clara {
    background: #d6dce3;
    padding: 50px 0 60px;
}

.seccion-clara-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.seccion-clara-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.seccion-clara-logo img:hover {
    transform: scale(1.05);
}

.seccion-clara-logo-bottom {
    margin-top: 30px;
    margin-bottom: 0;
}

.seccion-clara section {
    border-bottom: 2px solid rgba(13, 27, 42, 0.2);
}

.seccion-clara section:last-child {
    border-bottom: none;
}

.seccion-clara .section-header h2 {
    color: #0d3b4f;
}

.seccion-clara .section-header p {
    color: #46505a;
}

.seccion-clara .feature-card {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.08);
    box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06);
}

.seccion-clara .feature-card:hover {
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 0 12px 30px rgba(79, 195, 247, 0.18);
}

.seccion-clara .feature-icon {
    color: #1382a8;
}

.seccion-clara .feature-card h3 {
    color: #0d1b2a;
}

.seccion-clara .feature-card p {
    color: #5a6470;
}

.seccion-clara .review-stars {
    color: #1382a8;
}

.seccion-clara .review-text {
    color: #2c333a;
}

.seccion-clara .review-author {
    color: #1382a8;
}

.seccion-clara .mini-indicator {
    background: rgba(13, 27, 42, 0.18);
}

.seccion-clara .mini-indicator.active {
    background: #1382a8;
}

.seccion-clara .carousel-arrow {
    background: rgba(13, 27, 42, 0.1);
    color: #0d1b2a;
}

.seccion-clara .carousel-arrow:hover {
    background: rgba(13, 27, 42, 0.2);
}

/* ================= FAQ GRID ================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.faq-card {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 195, 247, 0.4);
    box-shadow: 0 10px 28px rgba(79, 195, 247, 0.14);
}

.faq-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #0d3b4f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.faq-card p {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #5a6470;
}

/* ================= CONTÁCTANOS (dentro del bloque claro) ================= */
.contacto-clara {
    font-family: 'Quicksand', sans-serif;
}

.contacto-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Sin esto, los <input>/<textarea> conservan su ancho mínimo interno del
   navegador y obligan a la columna del grid a no encogerse en pantallas
   angostas, empujando toda la sección fuera del viewport. */
.contacto-form-col,
.contacto-director-col {
    min-width: 0;
}

/* Director card en modo claro */
.director-card {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06);
}

.director-foto-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(19,78,94,0.06);
    border: 2px solid rgba(19,78,94,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.director-foto-placeholder svg {
    width: 80px;
    height: 80px;
}

.director-foto-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.director-nombre {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 6px;
}

.director-cargo {
    font-size: 13px;
    color: #1382a8;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.director-datos {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.director-datos p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #5a6470;
    line-height: 1.5;
}

.director-datos a {
    color: #1382a8;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.director-datos a:hover {
    opacity: 0.75;
}

/* Campos del formulario en modo claro */
.contacto-clara .form-field input,
.contacto-clara .form-field textarea {
    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.15);
    color: #0d1b2a;
}

.contacto-clara .form-field input:focus,
.contacto-clara .form-field textarea:focus {
    border-color: #1382a8;
    background: #fff;
}

.contacto-clara .form-field input::placeholder,
.contacto-clara .form-field textarea::placeholder {
    color: rgba(90, 100, 112, 0.6);
}

/* ================= FOOTER ================= */
.footer {
    background: #0f2027;
    padding: 60px 40px 20px;
    border-top: 2px solid rgba(79, 195, 247, 0.3);
    font-family: 'Quicksand', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #4fc3f7;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #4fc3f7;
    padding-left: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 500;
}

/* ================= MINI CARRUSEL DE SERVICIOS ================= */
.mini-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #1a1a2e;
}

.mini-carousel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.4);
}

.mini-carousel::after {
    content: 'Ver más';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(79, 195, 247, 0.9);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 18px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.mini-carousel:hover::after {
    transform: translateY(0);
}

.mini-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    cursor: pointer;
}

.mini-slide.active {
    opacity: 1;
}

.mini-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.mini-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-indicator.active {
    background: rgba(255,255,255,0.9);
    width: 24px;
    border-radius: 5px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-arrow:hover {
    background: rgba(0,0,0,0.8);
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .navbar {
        padding: 0.4rem 1rem;
        justify-content: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        background: rgba(13, 27, 42, 0.95);
        backdrop-filter: blur(8px);
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        display: flex;
    }
    
    .logo {
        height: 35px;
    }
    
    #logo {
        width: 300px;
    }
    
    .imagen-representativa {
        max-width: 400px;
        width: 85%;
    }
    
    section {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-text h2 {
        font-size: 28px;
    }
    
    .section-text p {
        font-size: 16px;
    }
    
    .section-image {
        height: 300px;
    }
    
    .mini-carousel {
        height: 300px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .carousel-indicators {
        bottom: 60px;
    }
    
    section:nth-child(even) .section-content {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .reviews-carousel {
        padding: 30px 15px;
        border-radius: 12px;
    }

    .review-slide {
        padding: 10px 45px;
    }
    
    .review-text {
        font-size: 16px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contacto-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.3rem 0.5rem;
    }
    
    .logo {
        height: 30px;
    }
    
    .imagen-representativa {
        max-width: 300px;
        width: 90%;
    }
    
    .section-text h2 {
        font-size: 24px;
    }
    
    .section-image {
        height: 250px;
    }
    
    .mini-carousel {
        height: 250px;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
/* ================= FORMULARIO DE CONTACTO (PHP) ================= */
.form-field {
    margin-bottom: 12px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    min-width: 0;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #4fc3f7;
    background: rgba(79, 195, 247, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(160, 180, 200, 0.6);
}

.btn-enviar {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, #134E5E, #4fc3f7);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    margin-top: 4px;
}

.btn-enviar:hover:not(:disabled) {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn-enviar:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.form-notice {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 14px;
}

.form-notice.ok {
    background: rgba(46, 213, 115, 0.12);
    border: 1px solid rgba(46, 213, 115, 0.35);
    color: #2ed573;
}

.form-notice.error {
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.35);
    color: #ff6b6b;
}