* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff3333;
    --primary-dark: #cc0000;
    --primary-light: #ff5555;
    
    /* Light theme */
    --light-bg: #0f1419;
    --light-gray-bg: #1a1f2e;
    --light-gray-bg-2: #252d3d;
    --text-dark: #ffffff;
    --text-gray: #d0d0d0;
    --text-light-gray: #909090;
    --border-color: #333333;
    --accent-color: #ff6b35;
    
    /* Dark theme */
    --dark-bg: #0a0e14;
    --dark-bg-secondary: #141820;
    --dark-bg-tertiary: #1a1f2e;
    --dark-text: #ffffff;
    --dark-text-secondary: #c0c0c0;
}

html {
    scroll-behavior: smooth;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light Theme */
body.light-theme {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

/* Dark Theme */
body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.header {
    border-bottom: 1px solid;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.light-theme .header {
    background: var(--light-bg);
    border-color: var(--border-color);
}

body.dark-theme .header {
    background: var(--dark-bg-secondary);
    border-color: rgba(255,255,255,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.subtitle-header {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

body.light-theme .nav a {
    color: var(--text-gray);
}

body.dark-theme .nav a {
    color: var(--dark-text-secondary);
}

body.light-theme .nav a:hover {
    color: var(--primary-color);
}

body.dark-theme .nav a:hover {
    color: #00d9ff;
}

.cta-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-nav:hover {
    background: var(--primary-dark);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 2px solid;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.light-theme .theme-toggle {
    border-color: var(--border-color);
    color: var(--text-dark);
}

body.dark-theme .theme-toggle {
    border-color: rgba(255,255,255,0.2);
    color: var(--dark-text);
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 80px 30px;
    border-bottom: 1px solid;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.light-theme .hero {
    background: var(--light-bg);
    border-color: var(--border-color);
}

body.dark-theme .hero {
    background: var(--dark-bg);
    border-color: rgba(255,255,255,0.1);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    animation: slideInLeft 0.8s ease-out;
}

body.light-theme .hero-title {
    color: var(--text-dark);
}

body.dark-theme .hero-title {
    color: var(--dark-text);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

body.light-theme .hero-subtitle {
    color: var(--text-gray);
}

body.dark-theme .hero-subtitle {
    color: var(--dark-text-secondary);
}

.location {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

body.light-theme .location {
    color: var(--text-light-gray);
}

body.dark-theme .location {
    color: var(--dark-text-secondary);
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(255, 51, 51, 0.3);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* Services Section */
.servicios {
    padding: 80px 30px;
    transition: background-color 0.3s ease;
}

body.light-theme .servicios {
    background: var(--light-gray-bg);
}

body.dark-theme .servicios {
    background: var(--dark-bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

body.light-theme .section-header h2 {
    color: var(--text-dark);
}

body.dark-theme .section-header h2 {
    color: var(--dark-text);
}

.section-header p {
    font-size: 1rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

body.light-theme .section-header p {
    color: var(--text-gray);
}

body.dark-theme .section-header p {
    color: var(--dark-text-secondary);
}

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

.servicio-card {
    padding: 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

body.light-theme .servicio-card {
    background: var(--light-bg);
    border-color: var(--border-color);
}

body.dark-theme .servicio-card {
    background: var(--dark-bg-tertiary);
    border-color: rgba(255,255,255,0.1);
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,51,51,0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.servicio-card:hover::before {
    left: 100%;
}

.servicio-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 51, 51, 0.2);
    transform: translateY(-5px);
}

body.dark-theme .servicio-card:hover {
    box-shadow: 0 8px 24px rgba(255, 51, 51, 0.25);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

body.light-theme .servicio-icon {
    background: var(--light-gray-bg);
}

body.dark-theme .servicio-icon {
    background: rgba(0,217,255,0.1);
}

.servicio-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.servicio-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.servicio-card p {
    line-height: 1.7;
    font-size: 0.95rem;
}

body.light-theme .servicio-card p {
    color: var(--text-gray);
}

body.dark-theme .servicio-card p {
    color: var(--dark-text-secondary);
}

/* Benefits Section */
.beneficios-section {
    padding: 80px 30px;
    transition: background-color 0.3s ease;
}

body.light-theme .beneficios-section {
    background: var(--light-bg);
}

body.dark-theme .beneficios-section {
    background: var(--dark-bg);
}

.beneficios-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

body.light-theme .benefit-card {
    background: var(--light-gray-bg);
    border-color: var(--border-color);
}

body.dark-theme .benefit-card {
    background: var(--dark-bg-secondary);
    border-color: rgba(255,255,255,0.1);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(255, 51, 51, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    animation: float 0.3s ease;
}

body.light-theme .benefit-icon {
    background: var(--light-bg);
}

body.dark-theme .benefit-icon {
    background: rgba(0,217,255,0.1);
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

body.light-theme .benefit-card p {
    color: var(--text-gray);
}

body.dark-theme .benefit-card p {
    color: var(--dark-text-secondary);
}

/* What Does Section */
.what-does-section {
    padding: 80px 30px;
    transition: background-color 0.3s ease;
}

body.light-theme .what-does-section {
    background: var(--light-gray-bg);
}

body.dark-theme .what-does-section {
    background: var(--dark-bg-secondary);
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefit-list-item p {
    line-height: 1.6;
    font-size: 0.95rem;
}

body.light-theme .benefit-list-item p {
    color: var(--text-gray);
}

body.dark-theme .benefit-list-item p {
    color: var(--dark-text-secondary);
}

/* Checklist Section */
.checklist-section {
    padding: 80px 30px;
    transition: background-color 0.3s ease;
}

body.light-theme .checklist-section {
    background: var(--light-bg);
}

body.dark-theme .checklist-section {
    background: var(--dark-bg-secondary);
}

.checklist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.checklist-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

body.light-theme .checklist-text h2 {
    color: var(--text-dark);
}

body.dark-theme .checklist-text h2 {
    color: var(--dark-text);
}

.checklist-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

body.light-theme .checklist-text p {
    color: var(--text-gray);
}

body.dark-theme .checklist-text p {
    color: var(--dark-text-secondary);
}

.checklist-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.checklist-text li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light-theme .checklist-text li {
    color: var(--text-gray);
}

body.dark-theme .checklist-text li {
    color: var(--dark-text-secondary);
}

.checklist-text li:before {
    content: '';
    display: none;
}

.checklist-form {
    padding: 40px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

body.light-theme .checklist-form {
    background: var(--light-gray-bg);
}

body.dark-theme .checklist-form {
    background: var(--dark-bg-tertiary);
}

#downloadForm h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

body.light-theme #downloadForm h3 {
    color: var(--text-dark);
}

body.dark-theme #downloadForm h3 {
    color: var(--dark-text);
}

.checklist-form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-form-group .form-group input {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border 0.3s ease;
}

body.light-theme .checklist-form-group .form-group input {
    background: white;
    border-color: var(--border-color);
    color: var(--text-dark);
}

body.dark-theme .checklist-form-group .form-group input {
    background: var(--dark-bg);
    border-color: rgba(255,255,255,0.1);
    color: var(--dark-text);
}

.checklist-form-group .form-group input::placeholder {
    color: var(--text-light-gray);
}

body.dark-theme .checklist-form-group .form-group input::placeholder {
    color: var(--dark-text-secondary);
}

.checklist-form-group .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
}

body.light-theme .form-group.checkbox label {
    color: var(--text-gray);
}

body.dark-theme .form-group.checkbox label {
    color: var(--dark-text-secondary);
}

.form-group.checkbox input[type=\"checkbox\"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.cta-button-download {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
}

.cta-button-download:hover {
    background: var(--primary-dark);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 30px;
    transition: background-color 0.3s ease;
}

body.light-theme .why-choose-section {
    background: var(--light-gray-bg);
}

body.dark-theme .why-choose-section {
    background: var(--dark-bg-secondary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s ease;
    border: 1px solid;
}

body.light-theme .why-card {
    background: var(--light-bg);
    border-color: var(--border-color);
}

body.dark-theme .why-card {
    background: var(--dark-bg-tertiary);
    border-color: rgba(255,255,255,0.1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(255, 51, 51, 0.2);
    border-color: var(--primary-color);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

body.light-theme .why-card p {
    color: var(--text-gray);
}

body.dark-theme .why-card p {
    color: var(--dark-text-secondary);
}

/* Process Section */
.process-section {
    padding: 80px 30px;
    transition: background-color 0.3s ease;
}

body.light-theme .process-section {
    background: var(--light-bg);
}

body.dark-theme .process-section {
    background: var(--dark-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
}

body.light-theme .step {
    background: var(--light-gray-bg);
    border-color: var(--border-color);
}

body.dark-theme .step {
    background: var(--dark-bg-secondary);
    border-color: rgba(255, 51, 51, 0.3);
}

.step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.25);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
}

body.light-theme .step p {
    color: var(--text-gray);
}

body.dark-theme .step p {
    color: var(--dark-text-secondary);
}

.cta-section {
    padding: 60px 30px;
    background: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 2rem;
}

.cta-section .cta-button:hover {
    background: var(--light-gray-bg);
}

/* Contact Section */
.contacto {
    padding: 80px 30px;
    transition: background-color 0.3s ease;
}

body.light-theme .contacto {
    background: var(--light-bg);
}

body.dark-theme .contacto {
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

body.light-theme .contact-info h2,
body.light-theme .contact-form h2 {
    color: var(--text-dark);
}

body.dark-theme .contact-info h2,
body.dark-theme .contact-form h2 {
    color: var(--dark-text);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light-gray);
}

body.dark-theme .contact-item h3 {
    color: var(--dark-text-secondary);
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
}

body.light-theme .contact-item p,
body.light-theme .contact-item a {
    color: var(--text-dark);
}

body.dark-theme .contact-item p,
body.dark-theme .contact-item a {
    color: var(--dark-text);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    padding: 30px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

body.light-theme .contact-form {
    background: var(--light-gray-bg);
}

body.dark-theme .contact-form {
    background: var(--dark-bg-secondary);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid;
    border-radius: 4px;
    color: inherit;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border 0.3s ease, background-color 0.3s ease;
}

body.light-theme .contact-form input,
body.light-theme .contact-form textarea {
    background: white;
    border-color: var(--border-color);
}

body.dark-theme .contact-form input,
body.dark-theme .contact-form textarea {
    background: var(--dark-bg-tertiary);
    border-color: rgba(255,255,255,0.1);
    color: var(--dark-text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light-gray);
}

body.dark-theme .contact-form input::placeholder,
body.dark-theme .contact-form textarea::placeholder {
    color: var(--dark-text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.cta-button-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.cta-button-primary:hover {
    background: #0e3d2f;
}

/* Footer */
.footer {
    padding: 50px 30px 30px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border-top: 1px solid;
}

body.light-theme .footer {
    background: var(--light-gray-bg);
    border-color: var(--border-color);
    color: rgba(0,0,0,0.6);
}

body.dark-theme .footer {
    background: var(--dark-bg-secondary);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid;
}

body.light-theme .footer-content {
    border-color: var(--border-color);
}

body.dark-theme .footer-content {
    border-color: rgba(255,255,255,0.1);
}

.footer-section h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

body.light-theme .footer-section h4 {
    color: var(--text-dark);
}

body.dark-theme .footer-section h4 {
    color: var(--dark-text);
}

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

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

body.light-theme .footer-section a {
    color: rgba(0,0,0,0.6);
}

body.dark-theme .footer-section a {
    color: rgba(255,255,255,0.6);
}

body.light-theme .footer-section a:hover {
    color: var(--text-dark);
}

body.dark-theme .footer-section a:hover {
    color: var(--dark-text);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

.footer-section a[href^="mailto:"] {
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .nav {
        gap: 1rem;
    }

    .nav a {
        font-size: 0.85rem;
    }

    .cta-nav {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .theme-toggle {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .servicios-grid,
    .beneficios-cards,
    .razones-grid,
    .checklist-content,
    .why-choose-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 60px 20px;
    }

    .servicios,
    .beneficios-section,
    .what-does-section,
    .checklist-section,
    .why-choose-section,
    .process-section,
    .por-que-elegir,
    .beneficios {
        padding: 60px 20px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .contacto {
        padding: 60px 20px;
    }

    .step-number {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}