/* ===== FACETAS LANDING PAGE STYLES ===== */

/* Cores específicas */
:root {
    --gold-primary: #d4af37;
    --gold-light: #f4e4a6;
    --gold-dark: #b8941f;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
    --gradient-luxury: linear-gradient(135deg, #d4af37 0%, #e6c866 50%, #f4e4a6 100%);
    --pearl-white: #fefefe;
    --dental-blue: #2c5aa0;
}

.text-gold {
    color: var(--gold-primary) !important;
}

/* Hero Section Específico */
.hero {
    background: linear-gradient(135deg, var(--dental-blue) 0%, #4a7bc8 100%);
    position: relative;
    overflow: hidden;
}

.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="dental-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="60" cy="60" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dental-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-highlight {
    background: linear-gradient(45deg, #fff, #f4e4a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.smile-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.smile-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: smileFloat 10s ease-in-out infinite;
}

.smile-element.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.smile-element.element-2 {
    width: 70px;
    height: 70px;
    top: 60%;
    right: 25%;
    animation-delay: 3s;
}

.smile-element.element-3 {
    width: 50px;
    height: 50px;
    top: 35%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes smileFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Treatments Showcase */
.treatments-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.treatment-card {
    background: var(--white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.treatment-card.featured {
    border: 3px solid var(--gold-primary);
    transform: scale(1.02);
}

.treatment-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.card-image:hover .card-overlay {
    opacity: 1;
}

.card-image:hover img {
    transform: scale(1.1);
}

.learn-more-btn {
    background: var(--white);
    color: var(--dental-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-medium);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more-btn:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--dental-blue);
    font-weight: 500;
    background: rgba(44, 90, 160, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.card-features i {
    font-size: 0.8rem;
}

.price-range {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-small);
    text-align: center;
    font-weight: 600;
}

.price-range strong {
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.02) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--dental-blue);
    color: var(--dental-blue);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-medium);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--dental-blue);
    color: var(--white);
}

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

.gallery-item {
    background: var(--white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-fast);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.before-after-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.before-img,
.after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-img {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

.comparison-slider {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: none;
}

.labels {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.before-label,
.after-label {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.item-info {
    padding: 1.5rem;
}

.item-info h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.item-info p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Process Timeline */
.process-section {
    background: var(--light-gray);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
    margin: 0 3rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--white);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--white);
    transform: translateY(-50%);
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-duration {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.timeline-icon {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dental-blue);
    font-size: 1.5rem;
}

.timeline-item:nth-child(even) .timeline-icon {
    right: auto;
    left: -25px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gradient-luxury);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    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 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="15" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

/* CTA Section */
.cta-section {
    background: var(--dark-gray);
    color: var(--white);
}

.smile-simulator-btn {
    background: linear-gradient(45deg, #f4e4a6, #d4af37);
    color: var(--dark-gray);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-medium);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.smile-simulator-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.dental-guarantee {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-medium);
    flex: 1;
    min-width: 200px;
}

.guarantee-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

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

/* Responsividade */
@media (max-width: 992px) {
    .treatments-showcase {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: var(--white) !important;
        border-left-color: transparent !important;
    }
    
    .timeline-icon {
        display: none;
    }
    
    .dental-guarantee {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guarantee-item {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        text-align: center;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-whatsapp {
        display: block;
        margin: 0 0 1rem 0;
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .before-after-container {
        height: 200px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .treatment-card {
        margin-bottom: 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .before-after-container {
        height: 180px;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .dental-guarantee {
        gap: 0.8rem;
    }
    
    .guarantee-item {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .smile-simulator-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Logo Styles */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

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


/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}


/* Section Alignment Improvements */
.hero-content {
    text-align: left;
    padding-right: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.treatment-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-container {
    margin-top: 2rem;
}

.gallery-item {
    text-align: center;
    margin-bottom: 2rem;
}

.before-after-container {
    position: relative;
    margin-bottom: 1rem;
}

.doctor-info {
    padding-left: 2rem;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 2rem;
}

.process-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.price-highlight {
    background: linear-gradient(135deg, var(--accent-color), #f39c12);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

/* Responsive Alignments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .doctor-info {
        padding-left: 0;
        text-align: center;
    }
}

