/* Reset and Base Styles */



/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.footer-brand h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-contact h4,
.footer-links h4,
.footer-features h4,
.footer-cta h4,
.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.contact-item i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-links ul,
.footer-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-features li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-features li {
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-cta p {
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #2c5530;
    --primary-light: #4a7c59;
    --primary-dark: #1a3d1f;
    --secondary-color: #d4af37;
    --secondary-light: #f4d03f;
    --secondary-dark: #b7950b;
    --accent-color: #8b4513;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --text-light: #ecf0f1;
    --background-light: #f8f9fa;
    --background-dark: #2c3e50;
    --white: #ffffff;
    --black: #000000;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    color: var(--white);
    overflow: hidden;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-proof-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.social-proof-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.social-proof-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Financing Calculator */
.financing-calculator {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--spacing-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-title {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.calculator-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.calculator-group label {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.calculator-group input,
.calculator-group select {
    padding: var(--spacing-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.calculator-group input:focus,
.calculator-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.calculator-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.calculator-result {
    background: rgba(212, 175, 55, 0.2);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--secondary-color);
    text-align: center;
    margin-top: var(--spacing-md);
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xs);
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.result-details {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.4;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 80px auto 0;
    padding-top: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    margin-bottom: var(--spacing-lg);
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(45deg, var(--white), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-location {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-price {
    margin-bottom: var(--spacing-lg);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
}

.currency {
    font-size: 2rem;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-detail {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    background: rgba(244, 208, 63, 0.2);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
    border: 1px solid var(--secondary-color);
}

.hero-urgency i {
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.about-highlight {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.about-highlight h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.about-highlight p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--white);
    font-size: 2rem;
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Video Section */
.video-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.video-section .section-title {
    color: var(--secondary-color);
}

.video-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: var(--spacing-lg);
}

.video-info h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.video-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.video-features span {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    opacity: 0.9;
}

.video-features i {
    color: var(--secondary-color);
    width: 20px;
}

@media (max-width: 768px) {
    .video-section {
        padding: var(--spacing-lg) 0;
        margin: 0;
        overflow: hidden;
    }
    
    .video-section .container {
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-top: var(--spacing-md);
    }
    
    .video-wrapper {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
    }
    
    .video-info {
        text-align: center;
        padding: var(--spacing-md) 0;
    }
    
    .video-features {
        justify-content: center;
    }
}

/* Gallery Section */
.gallery {
    padding: var(--spacing-xxl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: var(--spacing-lg);
    transform: translateY(100%);
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.gallery-overlay p {
    margin: 0;
    opacity: 0.9;
}

/* Financing Section */
.financing {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d3a 100%);
    color: white;
}

/* Financing Calculator Styles */
.financing-calculator {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-header h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calculator-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-input-group label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.calc-input-group input,
.calc-input-group select {
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.calc-input-group input:focus,
.calc-input-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.calc-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-helper {
    font-size: 0.8rem;
    opacity: 0.8;
    color: var(--secondary-color);
}

#calculateBtn {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.calculator-result {
    background: rgba(212, 175, 55, 0.15);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--secondary-color);
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item:last-of-type {
    border-bottom: none;
}

.result-item.main-result {
    background: rgba(212, 175, 55, 0.2);
    margin: 1rem -2rem;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border: none;
}

.result-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.result-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.main-result .result-value {
    font-size: 1.8rem;
}

.result-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.financing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.financing-option {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.financing-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.financing-option.highlight {
    border-color: var(--secondary-color);
    position: relative;
}

.financing-option.highlight::before {
    content: 'Mais Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--white);
    font-size: 2rem;
}

.financing-option h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.financing-option p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.option-features span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
}

.option-features i {
    color: var(--success);
}

.permuta-value {
    background: linear-gradient(135deg, var(--success), #2ecc71);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.trust-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.trust-item span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xxl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

/* Form Styles */
.contact-form {
    background: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2c5530, #4a7c59, #2c5530);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    color: #2c5530;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.form-benefits span {
    display: flex;
    align-items: center;
    color: #2c5530;
    font-size: 14px;
    font-weight: 600;
}

.form-benefits span i {
    margin-right: 8px;
    color: #28a745;
}

.form-urgency {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    border-left: 4px solid #f39c12;
}

.form-urgency i {
    color: #f39c12;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.form-urgency span {
    color: #856404;
    font-weight: 600;
    font-size: 14px;
}

.form-security {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-security i {
    color: #28a745;
    margin-right: 8px;
}

.form-security span {
    color: #666;
    font-size: 13px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5530, #4a7c59);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-card h3 {
    color: #2c5530;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-card li {
    color: #555;
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.benefit-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.benefits-cta {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.benefits-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefits-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

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

.btn-secondary:hover {
    background: white;
    color: #2c5530;
}

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefits-cta {
        padding: 40px 20px;
    }
    
    .benefits-cta h3 {
        font-size: 24px;
    }
    
    .benefits-cta p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px 30px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #2c5530;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: #2c5530;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer strong {
    color: #2c5530;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 20px;
    color: white;
}

.faq-cta h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.faq-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.faq-cta .btn {
    background: white;
    color: #2c5530;
    border: none;
}

.faq-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

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



/* Float Elements */
/* WhatsApp Float Button */
.whatsapp-float-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.whatsapp-notification {
    background: #25D366;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: bounce 2s infinite;
    max-width: 200px;
}

.whatsapp-notification::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #25D366;
}

.close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 0.25rem;
    right: 0.5rem;
    line-height: 1;
}

.whatsapp-float {
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

.whatsapp-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover .whatsapp-text {
    bottom: -25px;
    opacity: 1;
}

.pulse-whatsapp {
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Urgency Banner */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.urgency-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.btn-urgency {
    background: white;
    color: #ff6b6b;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 2px solid white;
}

.btn-urgency:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

.close-urgency {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    opacity: 0.8;
}

.close-urgency:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--primary-light);
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }
    
    /* Typography optimized for mobile */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Mobile-specific attractive effects */
    .btn {
        transition: all 0.3s ease;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    /* Subtle animations for mobile */
    .feature-item {
        transition: transform 0.2s ease;
    }
    
    .feature-item:active {
        transform: scale(0.98);
    }
    
    /* Mobile-friendly hover effects (touch devices) */
    @media (hover: none) and (pointer: coarse) {
        .btn:hover {
            transform: none;
        }
        
        .gallery-item:hover {
            transform: none;
        }
        
        .feature-card:hover {
            transform: none;
        }
    }
    
    /* Enhanced WhatsApp button for mobile */
    .whatsapp-float {
        animation: pulseWhatsapp 3s infinite;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    
    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Loading animations for images */
    .gallery-item img {
        transition: opacity 0.3s ease;
    }
    .hero {
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    /* Smooth mobile animations */
    .feature-item {
        transition: transform 0.2s ease;
    }
    
    .feature-item:active {
        transform: scale(0.98);
    }
    
    /* Mobile-optimized hover effects (touch-friendly) */
    .btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Reduce animation intensity for mobile */
    .whatsapp-float {
        animation: none; /* Disable pulse on mobile for better performance */
    }
    
    .whatsapp-float:active {
        transform: scale(0.9);
        transition: transform 0.1s ease;
    }
    
    /* Mobile card effects */
    .gallery-item {
        transition: transform 0.2s ease;
    }
    
    .gallery-item:active {
        transform: scale(0.98);
    }
    
    /* Optimize floating elements for mobile */
    @keyframes floatMobile {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
    }
    
    .floating-element {
        animation: floatMobile 4s ease-in-out infinite;
    }
    
    .hero-content {
        margin: 100px auto 0;
        padding-top: 50px;
    }
    
    .title-main {
        font-size: 2.8rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .title-location {
        font-size: 1.2rem;
        margin-top: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: center;
        margin: var(--spacing-lg) 0;
    }
    
    /* Mobile-optimized buttons */
    .btn {
        min-height: 48px;
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-lg);
        border-radius: 8px;
        touch-action: manipulation;
    }
    
    .btn-large {
        min-height: 56px;
        font-size: 1.1rem;
        padding: var(--spacing-lg) var(--spacing-xl);
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin: var(--spacing-xl) 0;
    }
    
    .feature-item {
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        margin-top: var(--spacing-xl);
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Price display mobile optimization */
    .price-main {
        text-align: center;
        margin: var(--spacing-lg) 0;
    }
    
    .amount {
        font-size: 3rem;
        display: block;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    /* Section spacing for mobile */
    section {
        padding: var(--spacing-xxl) 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }
    
    /* Grid layouts for mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .financing-options {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Video section mobile optimization */
    .video-wrapper video {
        height: 250px !important;
        max-width: 100% !important;
    }
    
    .video-features {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-lg);
    }
    
    .video-feature {
        text-align: center;
        padding: var(--spacing-sm);
    }
    
    /* Form inputs mobile optimization */
    input, textarea, select {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: var(--spacing-md);
        border-radius: 6px;
    }
    
    textarea {
        min-height: 120px;
    }
    
    /* Navigation improvements */
    .hero-social-proof {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .social-proof-item {
        justify-content: center;
    }
    
    /* Typography hierarchy */
    h1 { font-size: 2.8rem; line-height: 1.2; }
    h2 { font-size: 2.2rem; line-height: 1.3; }
    h3 { font-size: 1.6rem; line-height: 1.4; }
    h4 { font-size: 1.3rem; line-height: 1.4; }
    
    /* Improved touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .title-main {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }
    
    /* Smaller screens adjustments */
    .section-title {
        font-size: 1.8rem;
    }
    
    .video-wrapper video {
        height: 200px !important;
    }
    
    /* Typography for very small screens */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    
    /* Compact spacing */
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-features {
        gap: var(--spacing-sm);
    }
    
    .feature-item {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
    }
}

/* Image Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--secondary-color);
}

.modal-caption {
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-prev,
.modal-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--secondary-color);
    color: var(--text-primary);
    transform: scale(1.1);
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 95%;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .modal-prev,
    .modal-next {
        font-size: 20px;
        padding: 12px 16px;
    }
    
    .modal-nav {
        padding: 0 10px;
    }
    
    .modal-caption {
        font-size: 1rem;
        padding: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .back-to-top,
    .modal {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    * {
        box-shadow: none !important;
    }
}