/* 
* FinAudit - Nuevo diseño
* Nueva paleta de colores:
* - Color principal: #2D3047 (azul oscuro)
* - Color secundario: #D64933 (rojo coral)
* - Color de acento: #EAF27C (amarillo claro)
* - Fondo claro: #F3F3F3 (gris claro)
* - Texto oscuro: #1A1A1A
* - Texto claro: #FFFFFF
*/

/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;700&display=swap');

/* Reseteo y estilos base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Add padding to account for fixed header height */
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #F3F3F3;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2D3047;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #D64933;
}

ul, ol {
    list-style-position: inside;
}

/* Contenedor principal */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: #2D3047;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D64933;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

/* Botones */
.btn-primary, .btn-secondary, .btn-cookie {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 0;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: #D64933;
    color: #FFFFFF;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2D3047;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: #FFFFFF;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #2D3047;
    color: #2D3047;
}

.btn-secondary:hover {
    background-color: #2D3047;
    color: #FFFFFF;
}

.btn-cookie {
    background-color: #D64933;
    color: #FFFFFF;
    font-size: 0.8rem;
    padding: 10px 20px;
}

.btn-cookie:hover {
    background-color: #2D3047;
}

/* Encabezado */
.site-header {
    background-color: #FFFFFF;
    color: #2D3047;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.domain-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D64933;
    text-transform: lowercase;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo a:hover .domain-text {
    color: #2D3047;
    transform: scale(1.05);
}

/* Navegación principal */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: #2D3047;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 1rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D64933;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: #D64933;
    color: #FFFFFF !important;
    border-radius: 0;
    padding: 10px 20px !important;
}

.nav-cta:hover {
    background-color: #2D3047;
}

.nav-cta::after {
    display: none;
}

/* Toggle para menú móvil */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #2D3047;
    margin: 5px 0;
    border-radius: 0;
    transition: all 0.3s ease;
}

/* Secciones generales */
section {
    padding: 120px 0;
    position: relative;
}

/* Divisores de secciones */
.wave-divider, .diagonal-divider {
    display: none;
}

/* Hero */
.hero {
    background-color: #FFFFFF;
    padding: 5rem 0;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-content h1, .hero-content h2 {
    color: #2D3047;
    margin: 0;
}

.hero-content h1 {
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    color: #444;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Sobre Nosotros */
.about {
    background-color: #FFFFFF;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #EAF27C;
    z-index: -1;
}

.about-image img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 15px;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background-color: #D64933;
}

/* Servicios */
.services {
    background-color: #F3F3F3;
    padding: 6rem 0;
    position: relative;
}

.services-intro {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.services-text {
    flex: 1;
}

.services-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2D3047;
}

.services-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-image img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.services-image:hover img {
    transform: scale(1.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid #D64933;
}

.service-header {
    background-color: #2D3047;
    color: #FFFFFF;
    padding: 2rem;
    text-align: center;
}

.service-header h3 {
    color: #FFFFFF;
    margin: 0;
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-content li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
    text-align: left;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D64933;
    font-weight: bold;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2D3047;
    margin-bottom: 2rem;
}

.service-card.featured {
    transform: translateY(-20px);
    border: none;
    border-bottom: 5px solid #D64933;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured::before {
    content: 'Recomendado';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #EAF27C;
    color: #2D3047;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card.featured:hover {
    transform: translateY(-30px);
}

.service-card.featured .service-header {
    background-color: #D64933;
}

/* Ventajas */
.advantages {
    background-color: #FFFFFF;
    padding: 6rem 0;
    position: relative;
}

.advantages-intro {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.advantages-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    order: 2;
}

.advantages-image img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.advantages-image:hover img {
    transform: scale(1.05);
}

.advantages-text {
    flex: 1;
    order: 1;
}

.advantages-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2D3047;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background-color: #F3F3F3;
    border-radius: 0;
    padding: 2.5rem 2rem;
    box-shadow: none;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #2D3047;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #D64933;
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-icon svg {
    width: 64px;
    height: 64px;
}

.advantage-icon svg path {
    fill: #D64933;
}

.advantage-card h3 {
    margin-bottom: 1rem;
}

/* Formulario de Contacto */
.contact-form {
    background-color: #F3F3F3;
    padding: 6rem 0;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 48, 71, 0.03);
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    z-index: 0;
}

.contact-form h2 {
    position: relative;
    z-index: 1;
}

.contact-form h2::after {
    background-color: #D64933;
}

.form-wrapper {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.form-container {
    flex: 1;
    background-color: #FFFFFF;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-image img {
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.form-image:hover img {
    transform: scale(1.05);
}

.form-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(45, 48, 71, 0.9), rgba(45, 48, 71, 0));
    color: #FFFFFF;
}

.form-overlay h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2D3047;
    font-weight: 500;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #1A1A1A;
    background-color: #F9F9F9;
    transition: all 0.3s ease;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2D3047;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(45, 48, 71, 0.1);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-submit {
    margin-top: 1rem;
    text-align: center;
}

/* Testimonios */
.testimonials {
    background-color: #F3F3F3;
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(234, 242, 124, 0.3);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 0;
    padding: 3rem 2rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 1;
    color: #D64933;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.2;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client {
    font-weight: bold;
    color: #2D3047;
}

.company {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-card.featured {
    background-color: #2D3047;
    color: #FFFFFF;
}

.testimonial-card.featured::before {
    color: #EAF27C;
}

.testimonial-card.featured .client {
    color: #EAF27C;
}

.testimonial-card.featured .company {
    color: #ccc;
}

/* FAQ */
.faq {
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(214, 73, 51, 0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.faq-item {
    background-color: #F3F3F3;
    border-radius: 0;
    padding: 2rem;
    border-left: 5px solid #2D3047;
    transition: transform 0.3s ease, border-left-color 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    border-left-color: #D64933;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #2D3047;
    position: relative;
    padding-left: 30px;
}

.faq-item h3::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    color: #D64933;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contacto */
.contact {
    background-color: #F3F3F3;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact-info {
    flex: 2;
}

.contact-hours {
    flex: 1;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #D64933;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 15px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-map {
    margin-top: 2.5rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 15px 15px 0 #D64933;
    position: relative;
}

.contact-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 48, 71, 0.1);
    z-index: 2;
}

.contact-hours h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #EAF27C;
}

/* Footer */
.site-footer {
    background-color: #2D3047;
    color: #FFFFFF;
    padding: 5rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-description {
    max-width: 400px;
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #D64933;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #EAF27C;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2D3047;
    color: #FFFFFF;
    padding: 1.5rem 0;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: #EAF27C;
    text-decoration: underline;
}

/* Página de agradecimiento */
.thanks-section {
    background: #2D3047;
    color: #FFFFFF;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thanks-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(214, 73, 51, 0.2);
    z-index: 0;
}

.thanks-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(234, 242, 124, 0.15);
    z-index: 0;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.thanks-icon {
    margin: 0 auto 2.5rem;
    width: 100px;
}

.thanks-icon svg path {
    fill: #EAF27C;
}

.thanks-section h1 {
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.thanks-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.thanks-buttons .btn-primary {
    min-width: 200px;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.next-steps {
    background-color: #FFFFFF;
    padding: 120px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    background-color: #F3F3F3;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 4px solid #D64933;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    background-color: #D64933;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 2rem;
}

/* Páginas de política */
.policy-section {
    background-color: #FFFFFF;
    padding: 180px 0 120px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    margin-bottom: 2.5rem;
    text-align: center;
}

.policy-content h2 {
    text-align: left;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}

.policy-content h2::after {
    display: none;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
}

.policy-content a {
    color: #D64933;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #2D3047;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    section {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container,
    .about-content,
    .contact-content,
    .form-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .form-image {
        width: 100%;
        height: 300px;
    }
    
    .form-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .services-intro,
    .advantages-intro {
        flex-direction: column;
        gap: 2rem;
    }
    
    .advantages-image {
        order: 1;
    }
    
    .advantages-text {
        order: 2;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav a {
        padding: 0.5rem 0;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column {
        text-align: center;
        flex-basis: 100%;
    }

    .thanks-buttons .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 