* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #f8f8f8;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.top-links {
    display: flex;
    gap: 15px;
}

.top-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.top-link:hover {
    color: #333;
}

/* Main Header */
.main-header {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 30px;
    width: auto;
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

.header-icons i {
    transition: color 0.3s;
}

.header-icons i:hover {
    color: #666;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Hero Section */
.hero-section {
    margin-bottom: 60px;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.form-wrapper {
    width: 100%;
}

.form-input-wrapper {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: border-color 0.3s;
}

.form-input:hover {
    border-color: #999;
}

.form-input-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

/* App Section */
.app-section {
    background-color: #f5f5f0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.app-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.app-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.phone-illustration {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.phone-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: rotate(5deg);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.app-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    flex-direction: column;
    padding: 8px 12px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.badge-text {
    font-size: 8px;
    opacity: 0.8;
}

.badge-store {
    font-size: 12px;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    margin-top: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 900px;
    line-height: 1.8;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.contact-card.floating-button {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
}

.contact-card.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.whatsapp-icon {
    background-color: #25D366;
    color: #fff;
}

.contact-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
}

.contact-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #666;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs span {
    color: #333;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 0 30px;
}

.newsletter-section {
    margin-bottom: 50px;
}

.newsletter-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: 1px solid #555;
    border-radius: 6px;
    background-color: #3a3a3a;
    color: #fff;
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    padding: 15px 20px;
    background-color: #555;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-button:hover {
    background-color: #666;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.nav-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-column h4 i {
    font-size: 12px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 10px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.store-locator {
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.store-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.store-form {
    display: flex;
    gap: 10px;
    max-width: 300px;
    margin-bottom: 20px;
}

.store-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 6px;
    background-color: #3a3a3a;
    color: #fff;
    font-size: 14px;
}

.store-input::placeholder {
    color: #999;
}

.store-button {
    padding: 12px 15px;
    background-color: #555;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

.store-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn-primary {
    padding: 12px 24px;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.store-btn-primary:hover {
    background-color: #f0f0f0;
}

.store-btn-secondary {
    padding: 12px 24px;
    background-color: #3a3a3a;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.store-btn-secondary:hover {
    background-color: #4a4a4a;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #444;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer-slogan {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slogan-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    opacity: 0.7;
}

.footer-copyright {
    font-size: 12px;
    color: #999;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 25px;
    width: auto;
    filter: brightness(0) invert(1);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #555;
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 18px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.floating-call-button i {
    font-size: 20px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-section {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-call-button {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .floating-call-button span {
        display: none;
    }
    
    .floating-call-button::after {
        content: "Call";
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .footer-slogan .slogan-img {
        max-width: 250px;
    }
}

