/* ===== HARMONIZAÇÃO LANDING PAGE STYLES ===== */

/* Cores específicas */
:root {
    --rose-primary: #e91e63;
    --rose-light: #f8bbd9;
    --rose-dark: #ad1457;
    --gradient-rose: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    --gradient-beauty: linear-gradient(135deg, #e91e63 0%, #f48fb1 50%, #fce4ec 100%);
}

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

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

.hero::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 1000 1000"><defs><pattern id="beauty-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23beauty-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

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

.text-highlight {
    background: linear-gradient(45deg, #fff, #fce4ec);
    -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;
}

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

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

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

.beauty-element.element-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.beauty-element.element-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

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

/* Procedimentos Grid */
.procedures-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.procedure-card.main-card {
    grid-row: 1 / 3;
}

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

.main-card .card-image {
    height: 350px;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(233, 30, 99, 0.8);
    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(--rose-primary);
    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(--rose-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: 1rem;
    flex-wrap: wrap;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--rose-primary);
    font-weight: 500;
    background: rgba(233, 30, 99, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

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

/* Before After Gallery */
.before-after-section {
    background: var(--white);
    position: relative;
}

.before-after-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.02) 0%, rgba(248, 187, 217, 0.05) 100%);
}

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

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

.tab-btn.active,
.tab-btn:hover {
    background: var(--rose-primary);
    color: var(--white);
}

.gallery-content {
    position: relative;
}

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

.gallery-grid.active {
    display: grid;
}

.before-after-item {
    background: var(--white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.comparison-container {
    position: relative;
    height: 300px;
    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(--white);
    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(--white);
    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;
}

/* Doctor Section Específico */
.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-rose);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-medium);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.experience-badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.doctor-specialties {
    margin-top: 2rem;
}

.doctor-specialties h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.specialties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.specialty-tag {
    background: var(--gradient-rose);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

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

.step-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-large);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-rose);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--rose-primary);
    font-size: 2rem;
}

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

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

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

/* Testimonials Section */
.testimonials-section {
    background: var(--gradient-rose);
    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="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="10" 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);
}

.beauty-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(--rose-primary);
    font-size: 1.5rem;
}

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

/* Responsividade */
@media (max-width: 992px) {
    .procedures-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .procedure-card.main-card {
        grid-row: auto;
    }
    
    .main-card .card-image {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .beauty-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-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 200px;
    }
    
    .comparison-container {
        height: 250px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .procedure-card {
        margin-bottom: 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .comparison-container {
        height: 200px;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .beauty-guarantee {
        gap: 0.8rem;
    }
    
    .guarantee-item {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}


/* 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;
}

.procedure-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

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

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

.before-after-item {
    text-align: center;
}

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

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

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.step-content {
    flex: 1;
}

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

