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

:root {
    --mint-green: #A8D5BA;
    --olive-green: #6B8E23;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: var(--white);
    border: 2px solid var(--mint-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--mint-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 80px 20px 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    width: 100%;
}

.hero-image {
    flex-shrink: 0;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--mint-green);
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.hero-text {
    flex: 1;
}

.hero-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--olive-green);
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 300;
    max-width: 500px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--olive-green);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--mint-green);
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Services Section */
.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--mint-green);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--olive-green);
    margin-bottom: 15px;
}

/* Videos Section */
.videos {
    background: var(--light-gray);
}

.videos-intro {
    text-align: center;
    margin-bottom: 50px;
}

.videos-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-placeholder {
    background: var(--white);
    padding: 80px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px dashed var(--mint-green);
}

.video-placeholder p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Testimonials Display */
.testimonials-display {
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-left: 4px solid #A8D5BA;
    transition: all 0.3s ease;
}

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

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6B8E23;
    margin-bottom: 10px;
}

.testimonial-message {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-date {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

.no-testimonials {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #A8D5BA;
}

.no-testimonials p {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    color: #A8D5BA;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #A8D5BA;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Physiotherapy Icon Watermark */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    max-width: 200px;
    max-height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A8D5BA'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Mobile adjustments for watermark */
@media (max-width: 768px) {
    body::before {
        width: 50vw;
        height: 50vw;
        max-width: 150px;
        max-height: 150px;
    }
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
}
.testimonial-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--olive-green);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mint-green);
}

.btn-submit {
    background: var(--mint-green);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit:hover {
    background: var(--olive-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 4px solid var(--mint-green);
}

.testimonial-card .name {
    font-weight: 600;
    color: var(--olive-green);
    margin-bottom: 10px;
}

.testimonial-card .message {
    color: var(--text-gray);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--mint-green);
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    margin-bottom: 5px;
    color: #ccc;
}

/* Floating Contact Form */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-toggle {
    background: var(--mint-green);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.floating-toggle:hover {
    background: var(--olive-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.floating-form {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    width: 350px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-form.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-form h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--olive-green);
    margin-bottom: 20px;
    text-align: center;
}

/* Animated phrases */
.animated-phrases {
    margin-top: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phrase {
    font-size: 1.2rem;
    color: #6B8E23;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
    position: absolute;
    width: 100%;
    max-width: 800px;
}

.phrase.active {
    opacity: 1;
    transform: translateY(0);
}

/* Techniques Section */
.techniques {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.technique-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.technique-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #A8D5BA;
}

.technique-image {
    margin-bottom: 20px;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #A8D5BA 0%, #6B8E23 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.image-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.technique-content h3 {
    color: #6B8E23;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.technique-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .techniques-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .technique-item {
        padding: 20px;
    }
    
    .image-placeholder {
        height: 150px;
    }
    
    .phrase {
        font-size: 1rem;
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .profile-photo {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .floating-form {
        width: 300px;
        right: -10px;
    }
    
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .lang-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 10px 20px;
    }
    
    .hero-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .profile-photo {
        width: 200px;
        height: 200px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .floating-form {
        width: 280px;
        right: -20px;
    }
}



/* Legal Elements Styles */
.consent-group {
    margin: 20px 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto !important;
    margin: 0;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-gray);
}

.checkbox-group a {
    color: var(--olive-green);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--mint-green);
}

/* Footer Legal Links */
.footer-contact {
    margin-top: 15px;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--mint-green);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-gray);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    color: var(--mint-green);
    font-size: 1.2rem;
}

.cookie-text p {
    margin: 5px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: var(--mint-green);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn-accept-all {
    background: var(--mint-green);
    color: white;
}

.cookie-btn-accept-all:hover {
    background: var(--olive-green);
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid #ccc;
}

.cookie-btn-reject:hover {
    background: #ccc;
    color: var(--dark-gray);
}

.cookie-btn-customize {
    background: var(--olive-green);
    color: white;
}

.cookie-btn-customize:hover {
    background: var(--mint-green);
}

.cookie-btn-save {
    background: var(--mint-green);
    color: white;
    padding: 12px 30px;
}

.cookie-btn-save:hover {
    background: var(--olive-green);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--olive-green);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-gray);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: var(--olive-green);
}

.cookie-modal-body {
    padding: 20px 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h4 {
    margin: 0;
    color: var(--olive-green);
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.essential-toggle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
    background: #ccc;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: var(--mint-green);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(25px);
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--light-gray);
    text-align: center;
}

/* Responsive Design for Legal Elements */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkbox-group {
        align-items: flex-start;
    }
    
    .checkbox-group label {
        font-size: 0.85rem;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-text h3 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}


/* Hero Title Container */
.hero-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    color: #6B8E23;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.physio-symbol-inline {
    width: 2em;
    height: 2em;
    color: #A8D5BA;
}

/* Service Icons */
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A8D5BA, #6B8E23);
    border-radius: 50%;
    color: white;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

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

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #A8D5BA;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #6B8E23;
    margin-bottom: 15px;
}

.service-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

/* WhatsApp Floating Button - Apenas Ícone */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.videos-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6B8E23;
    text-align: center;
    margin-bottom: 20px;
}

.videos-section > .container > p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #A8D5BA;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #6B8E23;
    margin-bottom: 10px;
    text-align: center;
}

.video-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-name {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 2.5rem;
    }
    
    .physio-symbol-inline {
        width: 0.8em;
        height: 0.8em;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-item {
        padding: 20px;
    }
    
    .videos-section h2 {
        font-size: 2rem;
    }
    
    .videos-section > .container > p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}


/* Service images */
.service-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Technique images */
.technique-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Hide old service icons */
.service-icon {
    display: none;
}


/* Banners animados das frases - Imagens landscape */
.animated-phrases {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.phrase-banner {
    position: relative;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    will-change: opacity;
}

.phrase-banner.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Responsividade dos banners */
@media (max-width: 768px) {
    .banner-image {
        height: auto;
    }
}

@media (max-width: 480px) {
    .banner-image {
        height: auto;
    }
}


/* Videos Section */
.videos {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.videos .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--olive-green);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5em;
}

.videos .section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-gray);
    font-size: 1.2em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.video-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-content {
    padding: 25px;
}

.video-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3em;
    color: var(--olive-green);
    margin-bottom: 15px;
    line-height: 1.4;
}

.video-content p {
    color: var(--text-gray);
    font-size: 0.95em;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive adjustments for videos */
@media (max-width: 768px) {
    .videos {
        padding: 60px 0;
    }
    
    .videos .section-title {
        font-size: 2em;
    }
    
    .videos .section-subtitle {
        font-size: 1.1em;
        margin-bottom: 40px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-content {
        padding: 20px;
    }
    
    .video-content h3 {
        font-size: 1.2em;
    }
    
    .video-content p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .videos {
        padding: 40px 0;
    }
    
    .videos .section-title {
        font-size: 1.8em;
    }
    
    .videos .section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    .videos-grid {
        gap: 25px;
    }
    
    .video-content {
        padding: 15px;
    }
    
    .video-content h3 {
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    
    .video-content p {
        font-size: 0.85em;
    }
}

