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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(\'assets/images/hero_lashes.jpg\');   background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 180, 160, 0.3), rgba(212, 175, 55, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #E8B4A0, #D4AF37);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 180, 160, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 180, 160, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

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

/* Problema/Solução Section */
.problema-solucao {
    padding: 80px 0;
    background: #f8f9fa;
}

.problema {
    margin-bottom: 60px;
    text-align: center;
}

.problema h2 {
    color: #2C2C2C;
    margin-bottom: 2rem;
}

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

.problema-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.problema-item:hover {
    transform: translateY(-5px);
}

.problema-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solucao {
    text-align: center;
}

.solucao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.solucao-text {
    text-align: left;
}

.solucao-text ul {
    list-style: none;
    margin-top: 20px;
}

.solucao-text li {
    padding: 8px 0;
    font-size: 1.1rem;
}

.solucao-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background: white;
}

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

.sobre-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sobre-text h3 {
    color: #E8B4A0;
    margin-bottom: 1rem;
}

.credenciais {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.credencial-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.numero {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    font-family: 'Montserrat', sans-serif;
}

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

.destaque {
    background: linear-gradient(135deg, #E8B4A0, #D4AF37);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Galeria Section */
.galeria {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.galeria-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

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

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.galeria-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
    background: white;
    text-align: center;
}

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

.depoimento-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
}

.estrelas {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.depoimento-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cliente strong {
    color: #E8B4A0;
    display: block;
    margin-bottom: 5px;
}

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

/* Localização Section */
.localizacao {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: #E8B4A0;
    margin-bottom: 10px;
}

.ambiente-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8B4A0, #D4AF37);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-whatsapp, .cta-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-whatsapp:hover, .cta-instagram:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.cta-urgencia {
    font-size: 1rem;
    opacity: 0.9;
    animation: pulse 2s infinite;
}

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

/* Footer */
.footer {
    background: #2C2C2C;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .solucao-content,
    .sobre-content,
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .credenciais {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .problemas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .problema-solucao,
    .sobre,
    .galeria,
    .depoimentos,
    .localizacao,
    .cta-final {
        padding: 60px 0;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
    
    .cta-urgencia {
        animation: none;
    }
}

