/* Landing Page CSS - Dr. Wanderley Bustillos */

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-dark-green: #3f6036;
    --color-olive: #79815b;
    --color-gold: #cdad3f;
    --color-light-green: #aac32b;
    --color-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header/Navigation */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--color-light-green), var(--color-olive));
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(170, 195, 43, 0.4);
}

.mobile-menu-toggle {
    display: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #2c3e50 0%, 
        #34495e 25%, 
        #3f6036 50%, 
        #2d3d29 75%, 
        #1a1a1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 2rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.text-content {
    animation: slideInLeft 1s ease-out;
}

.doctor-name {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--color-white), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.specialty {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-light-green);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.credentials {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.crm {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.services {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-white);
    opacity: 0.8;
}

.description {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: var(--color-white);
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--color-white);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.whatsapp-btn, .treatments-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn {
    background: linear-gradient(45deg, var(--color-light-green), var(--color-olive));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(170, 195, 43, 0.3);
}

.treatments-btn {
    background: linear-gradient(45deg, var(--color-gold), var(--color-olive));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(205, 173, 63, 0.3);
}

.whatsapp-btn::before, .treatments-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 0.5s;
}

.whatsapp-btn:hover::before, .treatments-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover, .treatments-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(170, 195, 43, 0.4);
}

.treatments-btn:hover {
    box-shadow: 0 8px 25px rgba(205, 173, 63, 0.4);
}

.whatsapp-btn i, .treatments-btn i {
    font-size: 1.3rem;
}

/* Image Content */
.image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.doctor-image-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.doctor-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.doctor-image:hover {
    transform: scale(1.02);
}

/* Logo Container */
.logo-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    animation: pulse 2s infinite;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(205, 173, 63, 0.4));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.scroll-arrow {
    color: var(--color-white);
    font-size: 2rem;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--color-white);
    font-size: 2rem;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, var(--color-gold), var(--color-light-green));
    border-radius: 50%;
    opacity: 0.1;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation: float1 8s ease-in-out infinite;
}

.element-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 10%;
    animation: float2 6s ease-in-out infinite reverse;
}

.element-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 30%;
    animation: float3 10s ease-in-out infinite;
}

/* Complaints Section */
.complaints-section {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #2c3e50 0%, 
        #34495e 25%, 
        #3f6036 50%, 
        #2d3d29 75%, 
        #1a1a1a 100%);
    padding: 6rem 0;
    position: relative;
    color: var(--color-white);
}

.complaints-section .section-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.complaints-section .section-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(231, 76, 60, 0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

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

.complaint-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.complaint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 173, 63, 0.2), transparent);
    transition: left 0.5s;
}

.complaint-card:hover::before {
    left: 100%;
}

.complaint-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(205, 173, 63, 0.3);
}

.complaint-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.complaint-icon i {
    font-size: 1.8rem;
    color: var(--color-white);
}

.complaint-card:hover .complaint-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #e74c3c);
}

.complaint-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.complaint-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.complaints-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.complaints-cta .cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.complaints-cta .cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.complaints-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: var(--color-white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.complaints-cta .cta-button::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 0.5s;
}

.complaints-cta .cta-button:hover::before {
    left: 100%;
}

.complaints-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #e74c3c);
}

.complaints-cta .cta-button i {
    font-size: 1.3rem;
}

/* Background Elements for Complaints */
.complaints-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.complaints-bg-element {
    position: absolute;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    opacity: 0.05;
}

.complaints-bg-element.element-1 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 15%;
    animation: float1 14s ease-in-out infinite;
}

.complaints-bg-element.element-2 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 10%;
    animation: float2 12s ease-in-out infinite reverse;
}

.complaints-bg-element.element-3 {
    width: 90px;
    height: 90px;
    top: 65%;
    right: 25%;
    animation: float3 10s ease-in-out infinite;
}

/* About Section */
.about-section {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #e9ecef 25%, 
        #dee2e6 50%, 
        #ced4da 75%, 
        #adb5bd 100%);
    padding: 6rem 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.about-text {
    color: var(--color-dark-green);
}

.about-text .section-title {
    color: var(--color-dark-green);
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-dark-green);
    font-weight: 400;
}

.education, .experience, .differential {
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: var(--color-dark-green);
    position: relative;
    padding-left: 1.5rem;
}

.experience-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-light-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-olive);
    font-style: italic;
    line-height: 1.5;
    padding: 1rem;
    background: rgba(205, 173, 63, 0.1);
    border-left: 4px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.office-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    animation: fadeInRight 1s ease-out;
}

.office-image:hover {
    transform: scale(1.02);
}

/* Treatments Section */
.treatments-section {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #e9ecef 20%, 
        #dee2e6 40%, 
        #ced4da 60%, 
        #adb5bd 80%, 
        #6c757d 100%);
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--color-dark-green);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Treatments Grid */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.treatment-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 173, 63, 0.1), transparent);
    transition: left 0.5s;
}

.treatment-card:hover::before {
    left: 100%;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-gold), var(--color-olive));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--color-white);
}

.treatment-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(205, 173, 63, 0.4);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-dark-green);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-olive);
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Background Elements for Treatments */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    background: linear-gradient(45deg, var(--color-gold), var(--color-light-green));
    border-radius: 50%;
    opacity: 0.05;
}

.bg-element.element-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 10%;
    animation: float1 12s ease-in-out infinite;
}

.bg-element.element-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: float2 10s ease-in-out infinite reverse;
}

.bg-element.element-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation: float3 8s ease-in-out infinite;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.testimonial-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(205, 173, 63, 0.1);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-gold);
    font-family: serif;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.patient-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-light-green), var(--color-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.patient-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--color-dark-green);
    font-size: 1.1rem;
    font-weight: 600;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
}

.verified {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    background: linear-gradient(135deg, 
        #2c3e50 0%, 
        #34495e 25%, 
        #3f6036 50%, 
        #2d3d29 75%, 
        #1a1a1a 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.testimonials-cta::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="%23fff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23fff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23fff" opacity="0.1"/></svg>');
    pointer-events: none;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--color-gold), #e6b800);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(205, 173, 63, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(205, 173, 63, 0.4);
    background: linear-gradient(135deg, #e6b800, var(--color-gold));
}

.cta-button i {
    font-size: 1.3rem;
}

/* Social Media Section */
.social-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        #2c3e50 0%, 
        #34495e 25%, 
        #3f6036 50%, 
        #2d3d29 75%, 
        #1a1a1a 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.social-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="%23fff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23fff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23fff" opacity="0.1"/></svg>');
    pointer-events: none;
}

.social-section .section-title {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1rem;
}

.social-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 4rem;
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.social-networks, .contact-info-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-title, .contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-white);
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E4405F, #F56040);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon i {
    font-size: 1.8rem;
    color: var(--color-white);
}

.social-info h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #e6b800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--color-white);
}

.contact-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.contact-text p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-text a {
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--color-gold);
}

.map-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-white);
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.map-button, .appointment-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.map-button {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.appointment-button {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.appointment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.map-button i, .appointment-button i {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        var(--color-dark-green) 0%, 
        #2d3d29 25%, 
        var(--color-olive) 50%, 
        #5a6248 75%, 
        var(--color-gold) 100%);
    padding: 6rem 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
}

.contact-text h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--color-white);
    opacity: 0.8;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, var(--color-light-green), var(--color-olive));
    color: var(--color-white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(170, 195, 43, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(170, 195, 43, 0.4);
}

.cta-button i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-info {
    color: var(--color-white);
    opacity: 0.8;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

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

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

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(205, 173, 63, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(205, 173, 63, 0.8);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

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

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(-180deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(360deg);
    }
}

/* Responsive Design */@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .doctor-image-container {
        max-width: 500px;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .social-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-networks, .contact-info-section {
        padding: 2rem;
    }
}    
    .about-text .section-title {
        font-size: 3rem;
    }
    
    .doctor-name {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .text-content {
        order: 1;
    }
    
    .image-content {
        order: 2;
    }
    
    .doctor-image-container {
        max-width: 350px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .testimonials-cta {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-section {
        padding: 4rem 0;
    }
    
    .social-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-networks, .contact-info-section, .map-section {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .social-link {
        padding: 1rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon i {
        font-size: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-button, .appointment-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}  
    .about-image {
        order: 2;
    }
    
    .about-text .section-title {
        font-size: 2.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
    
    .experience-list li {
        font-size: 1rem;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .doctor-name {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation {
        gap: 1rem;
    }
    
    .nav-whatsapp {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 140px 0 3rem 0;
    }
    
    .doctor-name {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .doctor-name .line-1,
    .doctor-name .line-2,
    .doctor-name .line-3 {
        font-size: 1em;
    }
    
    .specialty {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-btn, .treatments-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .treatments-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .complaints-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .complaint-card {
        padding: 1.5rem;
    }
    
    .complaint-title {
        font-size: 1.2rem;
    }
    
    .complaints-cta {
        padding: 2rem 1.5rem;
    }
    
    .complaints-cta .cta-title {
        font-size: 2rem;
    }
    
    .complaints-cta .cta-text {
        font-size: 1.1rem;
    }
    
    .complaints-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .treatment-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-description {
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .doctor-name {
        font-size: 2.2rem;
    }
    
    .specialty {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .treatments-grid {
        gap: 1rem;
    }
    
    .treatment-card {
        padding: 1.2rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}



/* Extra small screens */
@media (max-width: 480px) {
    .doctor-name {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .doctor-name .line-1,
    .doctor-name .line-2,
    .doctor-name .line-3 {
        font-size: 1em;
    }
    
    .specialty {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
    
    .logo-container {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
}









/* Estilo para div com imagem de fundo no texto introdutório */
.intro-text-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('fundo_humanizado.jpeg');
    background-size: cover;
    background-position: center;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    position: relative; /* Garante que o conteúdo interno respeite o padding */
    overflow: hidden; /* Garante que o fundo não ultrapasse os cantos arredondados */
}

.intro-text-background .intro-text {
    color: var(--color-white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 0; /* Remove margem do parágrafo, pois a div já tem */
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500; /* Tornar um pouco mais pesado para contraste */
    position: relative; /* Garante que o texto fique sobre o overlay */
    z-index: 1;
}

