/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #64bcac;
    color: white;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.whatsapp-float:hover {
    background-color: #5494bc;
    transform: translateY(-50%) scale(1.1);
}

.whatsapp-float i {
    font-size: 24px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/marcelo new 2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-message {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    padding: 0 16px;
    width: 60%;
}

.message-image {
    width: 100%;
    height: auto;
    max-width: 500px;
}

.hero-button {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    background-color: #64bcac;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #5494bc;
    transform: scale(1.05);
}

.invisible-link {
    position: absolute;
    z-index: 10;
    top: 85%;
    left: 30%;
    width: 20%;
    height: 5%;
    min-width: 150px;
    min-height: 40px;
    max-width: 250px;
    max-height: 60px;
    transform: translate(-50%, -50%);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-circle {
    width: 480px;
    height: 480px;
    background-color: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
}

.text-content p {
    margin-bottom: 16px;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
}

.text-content .highlight {
    font-weight: 600;
    color: #5494bc;
}

.location-info {
    margin-top: 32px;
    padding: 16px;
    background-color: rgba(100, 188, 172, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #5494bc;
}

.location-info i {
    margin-right: 8px;
}

.location-info span {
    font-weight: 600;
}

/* Psychoanalysis Section */
.psychoanalysis-section {
    padding: 80px 0;
    text-align: center;
}

.psychoanalysis-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 32px;
}

.quote-box {
    background: linear-gradient(to right, #64bcac, #5494bc);
    color: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.quote-box.blue {
    background-color: #5494bc;
}

.quote-box p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    text-align: left;
}

.feature-card {
    border: 2px solid rgba(100, 188, 172, 0.2);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #5494bc;
    margin-bottom: 16px;
}

.feature-card:nth-child(2) i {
    color: #64bcac;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.feature-card p {
    color: #374151;
}

/* Indications Section */
.indications-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.indications-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 48px;
}

.indications-content {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.indications-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.indications-list {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 32px;
    display: flex;
    align-items: center;
    z-index: 20;
}

.indications-list ul {
    list-style: none;
    width: 100%;
}

.indications-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1f2937;
}

.indications-list i {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #64bcac;
}

.indications-list li:nth-child(even) i {
    color: #5494bc;
}

/* Treatment Section */
.treatment-section {
    padding: 80px 0;
}

.treatment-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 48px;
}

.treatment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.treatment-image {
    display: flex;
    justify-content: center;
}

.treatment-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.treatment-text {
    text-align: right;
}

.treatment-text p {
    margin-bottom: 16px;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
}

.treatment-text .highlight {
    font-weight: 600;
    color: #5494bc;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.testimonial-card {
    padding: 24px;
    border-left: 4px solid #64bcac;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    background-color: white;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-card:nth-child(2) {
    border-left-color: #5494bc;
}

.testimonial-card p {
    color: #374151;
    font-style: italic;
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonial-card span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #64bcac, #5494bc);
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 32px;
}

.contact-subtitle {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #5494bc;
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

.contact-button i {
    margin-right: 8px;
}

/* Footer */
.footer {
    padding: 48px 0;
    background-color: white;
    color: #111827;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.footer-left .subtitle {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 24px;
}

.footer-left .quote {
    font-style: italic;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.footer-left .copyright {
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-right img {
    width: 150px;
    height: auto;
    margin-bottom: 8px;
}

.footer-right p {
    font-size: 0.75rem;
    color: #374151;
}

/* Responsive Design para telas wide */
@media (min-width: 1400px) {
    .hero-message {
        width: 35%;
        max-width: 400px;
    }
    
    .message-image {
        max-width: 400px;
    }
}

@media (min-width: 1600px) {
    .hero-message {
        width: 30%;
        max-width: 420px;
    }
    
    .message-image {
        max-width: 420px;
    }
}

@media (min-width: 1920px) {
    .hero-message {
        width: 25%;
        max-width: 450px;
    }
    
    .message-image {
        max-width: 450px;
    }
}

@media (min-width: 2560px) {
    .hero-message {
        width: 20%;
        max-width: 480px;
    }
    
    .message-image {
        max-width: 480px;
    }
}

@media (min-width: 3440px) {
    .hero-message {
        width: 18%;
        max-width: 500px;
    }
    
    .message-image {
        max-width: 500px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .treatment-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
        text-align: center;
    }
    
    .treatment-text {
        text-align: left;
        order: 2;
    }
    
    .treatment-image {
        order: 1;
    }
    
    .image-circle {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-message {
        width: 75%;
    }
    
    .indications-content {
        height: 350px;
    }
    
    .indications-list {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 24px;
        position: relative;
        backdrop-filter: blur(10px);
    }
    
    .indications-list ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-right {
        align-items: flex-start;
        text-align: left;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-message {
        width: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 0 20px;
    }
    
    .message-image {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-button {
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .invisible-link {
        top: 80%;
        left: 50%;
        width: 40%;
        height: 8%;
        min-width: 120px;
        min-height: 35px;
        max-width: 200px;
        max-height: 50px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .about-section,
    .psychoanalysis-section,
    .indications-section,
    .treatment-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .about-text h2,
    .psychoanalysis-section h2,
    .indications-section h2,
    .treatment-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .quote-box p {
        font-size: 1.25rem;
    }
    
    .image-circle {
        width: 280px;
        height: 280px;
    }
    
    .whatsapp-float {
        right: 16px;
        width: 48px;
        height: 48px;
    }
    
    .whatsapp-float i {
        font-size: 20px;
    }
}

/* Media queries para dispositivos móveis muito pequenos */
@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-message {
        width: 90%;
        padding: 0 15px;
    }
    
    .message-image {
        max-width: 100%;
    }
    
    .hero-button {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .invisible-link {
        top: 75%;
        width: 50%;
        height: 10%;
        min-width: 100px;
        min-height: 30px;
    }
    
    .about-content {
        gap: 24px;
        text-align: center;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-image {
        order: 2;
        margin-top: 20px;
    }
    
    .about-text h2,
    .psychoanalysis-section h2,
    .indications-section h2,
    .treatment-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .location-info {
        margin-top: 24px;
        padding: 12px;
        justify-content: center;
        text-align: center;
    }
    
    .quote-box {
        padding: 24px 20px;
    }
    
    .quote-box p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .image-circle {
        width: 240px;
        height: 240px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 20px;
        text-align: center;
    }
    
    .feature-card i {
        font-size: 2.5rem;
    }
    
    .indications-content {
        height: 280px;
    }
    
    .indications-list {
        padding: 20px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
    }
    
    .indications-list ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .indications-list li {
        font-size: 0.95rem;
        margin-bottom: 8px;
        padding: 8px 0;
    }
    
    .indications-list i {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    .treatment-content {
        gap: 24px;
        text-align: center;
    }
    
    .treatment-text {
        text-align: center;
        order: 2;
    }
    
    .treatment-text p,
    .text-content p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .contact-grid {
        gap: 24px;
    }
    
    .contact-item i {
        font-size: 2.5rem;
    }
    
    .contact-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        right: 12px;
        width: 44px;
        height: 44px;
    }
    
    .whatsapp-float i {
        font-size: 18px;
    }
}

/* Media queries para dispositivos móveis extra pequenos */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-message {
        width: 95%;
        padding: 0 10px;
    }
    
    .hero-button {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .about-section,
    .psychoanalysis-section,
    .indications-section,
    .treatment-section,
    .testimonials-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .about-text h2,
    .psychoanalysis-section h2,
    .indications-section h2,
    .treatment-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }
    
    .quote-box {
        padding: 20px 15px;
    }
    
    .quote-box p {
        font-size: 1rem;
    }
    
    .image-circle {
        width: 200px;
        height: 200px;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 16px;
    }
    
    .indications-content {
        height: 250px;
    }
    
    .indications-list {
        padding: 16px;
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .indications-list ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .indications-list li {
        font-size: 0.9rem;
        margin-bottom: 6px;
        padding: 6px 0;
    }
    
    .indications-list i {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .contact-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}