:root {
    --primary-color: #008B8B;
    --primary-light: #E0F2F1;
    --primary-dark: #006666;
    --secondary-color: #FF7F50;
    --text-color: #2D3436;
    --text-light: #636E72;
    --bg-light: #F7F9FC;
    --white: #FFFFFF;
    --dark-footer: #1A252F;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Mulish', sans-serif;
    
    --popup-primary: #B76E79;
    --popup-dark: #8E444F;
    --popup-bg: #FFF9F9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp-full {
    background-color: #25D366;
    color: white;
    width: 100%;
    font-size: 1.1rem;
    margin-top: 15px;
}

.btn-whatsapp-full:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--primary-light);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.special-link {
    color: var(--popup-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.special-link i {
    color: var(--popup-primary);
}

.special-link:hover {
    color: var(--popup-primary);
}

.nav-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: #e66a3c;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-dark);
    transition: 0.3s;
}

.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(120deg, #fdfbf7 0%, #e0f2f1 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-badge {
    background-color: rgba(0, 139, 139, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: var(--shadow);
    border: 5px solid white;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.floating-card span {
    font-weight: 700;
    color: var(--primary-dark);
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.about-text .crp {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.education-box {
    margin-top: 30px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.education-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.education-box ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.education-box ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.topic-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.topic-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.topic-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.methodology-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.check-list {
    margin-top: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-list li i {
    color: var(--secondary-color);
    background: rgba(255, 127, 80, 0.1);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.methodology-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.online-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 0;
}

.online-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    flex-wrap: wrap;
    gap: 30px;
}

.online-text {
    flex: 1;
}

.online-text h2 {
    color: white;
    margin-bottom: 10px;
}

.online-text p {
    opacity: 0.9;
}

.full-width-section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

.full-viewport-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.testimonial-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-content {
    background: transparent;
    padding: 40px;
    text-align: center;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.t-item {
    display: none;
    animation: fadeEffect 0.8s;
}

.t-item.active {
    display: block;
}

@keyframes fadeEffect {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

.t-icon {
    font-size: 4rem;
    color: #c4e9e7;
    margin-bottom: 20px;
    opacity: 0.5;
}

.t-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.t-name {
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.t-name::before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto 10px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.slider-btn {
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
}

@media (min-width: 769px) {
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
    
    .slider-counter {
        position: absolute;
        bottom: -50px;
    }
}

.slider-counter {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: rgba(0, 139, 139, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.contact-split-section {
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-whatsapp-side {
    background: linear-gradient(135deg, #E0F2F1, #B2DFDB);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whatsapp-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.big-icon {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 15px;
}

.info-direct .info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 600;
}

.info-row i {
    font-size: 1.2rem;
}

.contact-form-side {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

.full-width {
    width: 100%;
}

.main-footer {
    background-color: var(--dark-footer);
    color: #ecf0f1;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--primary-color);
}

.brand-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.links-col ul li, .policies-col ul li, .contact-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a, .policy-link {
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: var(--transition);
}

.links-col ul li a:hover, .policy-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
}

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    animation: pulse 2s infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* --- Pop-up Style Otimizado --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fundo escuro simples */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #ffffff;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border-top: 6px solid var(--popup-primary); /* Detalhe chamativo no topo */
}

.popup-overlay.show .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ccc;
    transition: 0.2s;
    line-height: 1;
    z-index: 10;
}

.popup-close:hover {
    color: var(--popup-dark);
}

.popup-header {
    padding: 35px 30px 10px;
}

.popup-icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--popup-primary), var(--popup-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.3);
    animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(183, 110, 121, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(183, 110, 121, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(183, 110, 121, 0); }
}

.popup-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--popup-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.popup-body {
    padding: 10px 30px 25px;
}

.popup-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-popup {
    background: linear-gradient(to right, var(--popup-primary), var(--popup-dark));
    color: white;
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.25);
    border: none;
}

.btn-popup:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.35);
}

.btn-text-dismiss {
    background: transparent;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
    padding: 5px;
}

.btn-text-dismiss:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.popup-footer {
    background-color: #f8f9fa;
    padding: 10px;
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px solid #eee;
}

.popup-footer span {
    font-weight: 700;
    color: var(--popup-primary);
}

@media (max-width: 768px) {
    .popup-content {
        padding: 35px 25px;
        width: 85%;
    }
    .popup-content h3 {
        font-size: 1.4rem;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
        align-items: center;
        text-align: center;
        background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75)), url('assets/hero-ana.webp');
        background-size: cover;
        background-position: center top;
        padding-top: 120px;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    
    .hero-content {
        margin-top: 20px;
    }
    
    .hero-image {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-container, .methodology-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .experience-badge {
        right: 0;
        left: 0;
        margin: auto;
        width: fit-content;
    }

    .education-box {
        border-left: none;
        padding: 20px;
    }
    
    .education-box h3 {
        justify-content: center;
    }
    
    .education-box ul {
        text-align: left;
    }

    .online-box {
        flex-direction: column;
        text-align: center;
    }
    
    .online-action {
        width: 100%;
    }

    .testimonial-wrapper {
        position: relative;
    }
    
    .slider-controls {
        position: relative;
        margin-top: 20px;
        justify-content: center;
    }
    
    .slider-btn {
        position: static;
        transform: none;
        width: 50px;
        height: 50px;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .slider-counter {
        position: static;
    }

    .testimonial-content {
        padding: 0;
        min-height: auto; 
    }
    
    .t-text {
        font-size: 1.1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "brand brand"
            "nav pol"
            "contact contact";
        gap: 30px;
        text-align: center;
    }

    .brand-col { 
        grid-area: brand; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .brand-col p {
        margin: 0 auto;
        text-align: center;
    }

    .links-col { grid-area: nav; text-align: left; }
    .policies-col { grid-area: pol; text-align: left; }
    .contact-col { 
        grid-area: contact; 
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
    }
    
    .links-col, .policies-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }
    
    .contact-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Popup Mobile */
    .popup-content {
        padding: 40px 20px;
        width: 85%;
    }
    
    .popup-content h3 {
        font-size: 1.5rem;
    }
}

#form-status {
    margin-top: 15px;
    font-size: 0.95rem;
    text-align: center;
    min-height: 20px;
    transition: all 0.3s ease;
}

.success-message {
    color: #27ae60;
    background-color: rgba(39, 174, 96, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #27ae60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.error-message {
    color: #c0392b;
    background-color: rgba(192, 57, 43, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #c0392b;
}

.float-love {
    position: fixed;
    bottom: 105px;
    right: 30px;
    background-color: #B76E79;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid white;
    text-decoration: none;
}

.float-love:hover {
    background-color: #8E444F;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.6);
    color: white;
}

.float-love i {
    animation: heart-beat 2s infinite ease-in-out;
}

.float-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: white;
    color: #B76E79;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    animation: tooltipLifecycle 3s ease forwards 5s;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

@keyframes heart-beat {
    0% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.2); }
    70% { transform: scale(1); }
}

@keyframes tooltipLifecycle {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50%) translateX(10px);
    }
    17% {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }
    83% {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50%) translateX(10px);
    }
}

@media (max-width: 768px) {
    .float-love {
        width: 60px;
        height: 60px;
        bottom: 105px;
        right: 30px;
        font-size: 24px;
    }
    
    .float-tooltip {
        display: block;
        white-space: normal;
        width: max-content;
        max-width: 180px;
        text-align: right;
        right: 70px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo > span {
    color: var(--primary-dark);
}

.logo span span {
    color: var(--secondary-color);
}

.nav-logo-img {
    height: 45px;
    width: auto;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo > span {
    color: inherit;
}

.footer-logo span span {
    color: inherit;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 5px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-logo {
        align-items: center;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px; 
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; 
    font-weight: 700;
    color: var(--primary-color); 
    line-height: 1;
}

.nav-logo-img {
    height: 45px; 
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 0.85;
}

.logo span {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 500;
    font-size: 0.6em;
    margin-left: 2px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-content {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 60px; 
    width: auto;
    margin-right: 10px;
    filter: brightness(0) invert(1); 
    opacity: 0.9;
}

.footer-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; 
    font-weight: 700;
    line-height: 0.85;
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
}

.footer-logo .logo-text span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.6em; 
    font-weight: 500;
    font-style: italic;
    color: var(--secondary-color);
    margin-left: 2px;
}