/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* 🎨 Font Definitions - Fontes Locais */
@font-face {
    font-family: 'Safira March';
    src: url('assets/fonts/safira-march.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Melhora performance de carregamento */
}

/* Fallback para outras fontes se necessário */
@font-face {
    font-family: 'Safira March Personal Use Only';
    src: url('assets/fonts/safira-march.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FAF8F5;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

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

/* Header */
.header {
    background: #9C836D;
    box-shadow: 0 2px 10px rgba(156, 131, 109, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar {
    padding: 0.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    padding: 0.3rem 0;
    width: 100%;
    max-width: none;
    margin: 0;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    margin-left: 0;
    padding-left: 15px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: #FAF8F5;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 90px 0 100px;
    background: linear-gradient(rgba(250, 248, 245, 0.75), rgba(250, 248, 245, 0.75)), url('assets/logoMarca.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 115, 85, 0.1), rgba(160, 149, 107, 0.1));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-text h1.sofia-regular {
    font-family: "Sofia", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4.5rem;
    text-transform: none;
}

.hero-text h1.laguna-bold {
    font-family: "Laguna", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 4.5rem;
    text-transform: none;
}

.hero-text h1.safira-march {
    font-family: "Safira March", "Safira March Personal Use Only", cursive !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 4.2rem;
    text-transform: none;
    white-space: nowrap;
}

.hero-text p {
    font-size: 1.3rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-image img.animate {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.9);
}

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

.about-text h3 {
    font-size: 2.2rem;
    color: #8B7355;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-text h3.sofia-regular {
    font-family: "Sofia", cursive;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
}

.about-text h2.sofia-regular {
    font-family: "Sofia", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3.5rem;
    color: #8B7355;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: none;
}

.about-text h2.laguna-bold {
    font-family: "Laguna", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.5rem;
    color: #8B7355;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: none;
}

.about-text h2.safira-march {
    font-family: "Safira March", "Safira March Personal Use Only", cursive !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 3.2rem;
    color: #8B7355;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: none;
    white-space: nowrap;
}

.about-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img.animate {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header h2.safira-march {
    font-family: "Safira March", "Safira March Personal Use Only", cursive !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

/* Approach Section */
.approach {
    padding: 100px 0;
    background: linear-gradient(rgba(250, 248, 245, 0.85), rgba(250, 248, 245, 0.85)), url('assets/logoMarca.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.approach-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.approach-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.2);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B7355, #A0956B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.approach-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.approach-card:hover .approach-icon::after {
    width: 120%;
    height: 120%;
}

.approach-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.approach-card:hover .approach-icon i {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.approach-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.cta-button {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #8B7355;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #6D5A42;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 115, 85, 0.3);
}

.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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    aspect-ratio: 1 / 1;
    display: block;
}

.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.service-image::after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    width: 80%;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 3;
    text-align: center;
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.service-content .service-link {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-content .service-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.service-card:hover .service-image::before,
.service-card:hover .service-image::after,
.service-card:hover .service-content {
    opacity: 1;
}

.service-card:hover .service-content {
    transform: translateY(0);
}

/* Esconder o h3 original */
.service-content h3 {
    display: none;
}

/* Content Section */
.content {
    padding: 100px 0;
    background: linear-gradient(rgba(250, 248, 245, 0.85), rgba(250, 248, 245, 0.85)), url('assets/logoMarca.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    aspect-ratio: 1 / 1.6;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05), rgba(160, 149, 107, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 25px;
}

.content-card:hover::before {
    opacity: 1;
}

.content-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.15);
}

.content-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #8B7355, #A0956B);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
    }
}

.content-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.content-icon i {
    font-size: 1.3rem;
    color: #8B7355;
    transition: all 0.4s ease;
}

.content-card:hover .content-icon {
    transform: scale(1.1) rotate(5deg);
    background: #8B7355;
}

.content-card:hover .content-icon i {
    color: white;
    transform: scale(1.1);
}

.content-image {
    flex: 0 0 55%;
    overflow: hidden;
    position: relative;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) contrast(1) saturate(1.1);
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        transparent 0%, 
        rgba(0,0,0,0.1) 50%,
        rgba(139, 115, 85, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.content-card:hover .content-image img {
    transform: scale(1.08);
    filter: brightness(0.95) contrast(1.1) saturate(1.2);
}

.content-card:hover .content-overlay {
    opacity: 1;
}

.content-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
}

.content-category {
    color: #8B7355;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    position: relative;
}

.content-category::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #8B7355, #A0956B);
    border-radius: 1px;
}

.content-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.content-card:hover .content-info h3 {
    color: #8B7355;
}

.content-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.content-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #F0F0F0;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B7355;
    font-size: 0.9rem;
    font-weight: 500;
}

.read-time i {
    font-size: 0.8rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #FAF8F5;
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #8B7355;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8B7355, #A0956B);
    transition: width 0.4s ease;
}

.testimonial-card:hover::before {
    width: 8px;
}

.testimonial-card:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.15);
    background: #fff;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 10px 0 5px;
    background: rgba(250, 248, 245, 0.9);
}

.contact .section-header {
    margin-bottom: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FAF8F5, #F5F2ED);
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    margin-bottom: 0.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.form-group {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B7355, #A0956B);
    transition: width 0.4s ease;
}

.form-group input:focus + ::after,
.form-group textarea:focus + ::after {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #E8E3DB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Privacy Notice */
.privacy-notice {
    margin-bottom: 1.5rem;
}

.privacy-notice p {
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    font-style: italic;
}

.privacy-notice small {
    font-size: 0.85rem;
}

/* Centralizar botão do formulário de contato */
.contact-form .btn {
    display: inline-block;
    margin: 0;
    text-align: center;
    width: fit-content;
}

.contact-form form {
    text-align: left;
    width: 100%;
}

.contact-form .form-group {
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.contact-form .privacy-notice {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Container do botão para garantir centralização perfeita */
.contact-form .btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 0;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-logo {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-info {
    flex: 1;
    min-width: 0; /* Permite que o texto se quebre corretamente */
}

.footer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.footer-info .specialty {
    color: #8B7355;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.3;
}

/* Credenciais médicas organizadas */
.credentials {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.crm-info, .rqe-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 80px;
}

.credentials .label {
    color: #adb5bd;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    font-weight: 500;
    white-space: nowrap;
}

.credentials .number {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Informações de contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.whatsapp-info, .email-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #adb5bd;
    font-size: 0.9rem;
    word-break: break-word;
    line-height: 1.3;
}

.whatsapp-info i, .email-info i {
    color: #8B7355;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.whatsapp-info:hover, .email-info:hover {
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-info p {
    color: #adb5bd;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.footer-nav ul li a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #8B7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-social a:hover {
    background: #A0956B;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    color: #adb5bd;
}

/* Responsive Design - Footer Melhorado */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }
    
    .footer-nav ul li {
        margin-bottom: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        height: 60px;
        margin-bottom: 0.5rem;
    }
    
    .footer-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-info .specialty {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .credentials {
        justify-content: center;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .crm-info, .rqe-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
        gap: 1rem;
    }
    
    .whatsapp-info, .email-info {
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-nav {
        order: 2;
    }
    
    .footer-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-nav ul li a {
        font-size: 0.8rem;
        display: block;
        padding: 0.5rem;
    }
    
    .footer-social {
        order: 3;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .footer-social a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-brand {
        gap: 1rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-info h3 {
        font-size: 1.1rem;
    }
    
    .footer-info .specialty {
        font-size: 0.85rem;
    }
    
    .credentials {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .credentials .label {
        font-size: 0.7rem;
    }
    
    .credentials .number {
        font-size: 0.9rem;
    }
    
    .whatsapp-info, .email-info {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .whatsapp-info span, .email-info span {
        word-break: break-all;
        max-width: 250px;
    }
    
    .footer-nav ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 200px;
    }
    
    .footer-nav ul li a {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .footer {
        padding: 1rem 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-info h3 {
        font-size: 1rem;
    }
    
    .footer-info .specialty {
        font-size: 0.8rem;
    }
    
    .whatsapp-info span, .email-info span {
        font-size: 0.75rem;
        max-width: 200px;
    }
    
    .footer-nav ul li a {
        font-size: 0.7rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Melhorias específicas para orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }
    
    .footer-brand {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }
    
    .footer-nav {
        order: 2;
        text-align: left;
    }
    
    .footer-nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: none;
    }
    
    .footer-social {
        grid-column: 1 / -1;
        order: 3;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999 !important;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
}

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

.whatsapp-float::before {
    content: '1';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    animation: bounce 1s infinite;
}

/* Responsive WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 80px 0 60px;
    }
    
    .logo {
        height: 45px;
        max-width: 220px;
    }
    
    .navbar .container {
        padding: 0.3rem 0;
        width: 100%;
    }
    
    .nav-brand {
        margin-left: 0;
        padding-left: 15px;
        height: 100%;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: #9C836D;
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(156, 131, 109, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-image {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h2.safira-march {
        font-size: 2rem;
    }
    
    .hero-text h1.safira-march {
        font-size: 2.8rem;
        white-space: normal;
    }
    
    .about-text h2.safira-march {
        font-size: 2.2rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about,
    .approach,
    .services,
    .content,
    .testimonials,
    .contact {
        padding: 20px 0 10px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h2.safira-march {
        font-size: 2rem;
    }
    
    .hero-text h1.safira-march {
        font-size: 2.2rem;
        white-space: normal;
    }
    
    .about-text h2.safira-march {
        font-size: 1.8rem;
        white-space: normal;
    }
}

/* Animações e Transições */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Classes de animação - simplificadas */
.animate-on-scroll {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay para animações sequenciais */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Transições suaves entre seções */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B7355, transparent);
    transition: left 1s ease;
}

section.animate::before {
    left: 100%;
}

/* Efeitos especiais para formulário */
.contact-form {
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8B7355, #A0956B, #8B7355);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-form:hover::before {
    opacity: 1;
}

.form-group {
    position: relative;
    overflow: hidden;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B7355, #A0956B);
    transition: width 0.4s ease;
}

.form-group input:focus + ::after,
.form-group textarea:focus + ::after {
    width: 100%;
}

/* Cursor personalizado para elementos interativos */
.btn,
.nav-menu a,
.service-link,
.read-more,
.whatsapp-float {
    cursor: pointer;
    position: relative;
}

.btn:hover,
.nav-menu a:hover,
.service-link:hover,
.read-more:hover {
    cursor: pointer;
}

/* Indicador de progresso de scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #8B7355, #A0956B);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Efeito de scroll suave para toda a página */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Melhorias no header com backdrop blur */
.header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Efeito de fade nas bordas das seções */
.hero::after,
.about::after,
.approach::after,
.services::after,
.content::after,
.testimonials::after,
.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.2), transparent);
}

/* Efeito de respiração nos cards em foco */
.service-card:focus-within,
.content-card:focus-within,
.testimonial-card:focus-within {
    animation: breathe 2s ease-in-out infinite;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) saturate(1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: brightness(0.8) saturate(1.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.3);
}

.safira-march {
    font-family: "Safira March", "Safira March Personal Use Only", cursive, serif;
    font-weight: 400;
    font-style: normal;
}

.sofia-regular {
    font-family: "Sofia", cursive;
    font-weight: 400;
    font-style: normal;
}

.laguna-bold {
    font-family: "Laguna", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-card {
        aspect-ratio: 1 / 1.4;
    }
    
    .content-image {
        flex: 0 0 50%;
    }
    
    .content-info {
        padding: 1.5rem;
    }
    
    .content-info h3 {
        font-size: 1.2rem;
    }
}

/* 🛡️ PROTEÇÃO DE IMAGENS - Adicionar no final do arquivo */

/* Desabilitar seleção, arraste e clique direito em imagens */
img {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -moz-user-drag: none !important;
    -webkit-touch-callout: none !important;
    pointer-events: none !important;
    position: relative;
}

/* Re-habilitar pointer events para imagens clicáveis (como logo no nav) */
.navbar img,
.footer img,
.service-link,
.whatsapp-float {
    pointer-events: auto !important;
}

/* Overlay de proteção invisível sobre imagens */
.image-protection {
    position: relative;
    display: inline-block;
}

.image-protection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
    pointer-events: auto;
}

.image-protection img {
    pointer-events: none !important;
}

/* Proteção específica para seções */
.hero-image,
.about-image,
.service-image,
.content-image,
.contact-image {
    position: relative;
    overflow: hidden;
}

/* Desabilitar prints screen em algumas seções críticas */
@media print {
    .hero-image img,
    .about-image img,
    .contact-image img {
        visibility: hidden !important;
    }
    
    .hero-image::before,
    .about-image::before,
    .contact-image::before {
        content: 'Imagem protegida';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 14px;
        color: #999;
        background: #f5f5f5;
        padding: 20px;
        border: 1px solid #ddd;
        text-align: center;
    }
}

/* Proteção contra inspect element (limitada) */
.protected-content {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

/* Overlay para imagens de serviços */
.service-card .service-image {
    position: relative;
}

/* REMOVIDO: Overlay escuro que estava criando quadrados desnecessários
.service-card .service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 0%, transparent 70%, rgba(139, 119, 101, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}
*/

/* Efeito blur quando usuário tenta selecionar */
.blur-on-select {
    transition: filter 0.3s ease;
}

.blur-on-select:active,
.blur-on-select:focus {
    filter: blur(2px);
}

/* Proteção contra extensões de download de imagem */
img[src] {
    content: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB2aWV3Qm94PSIwIDAgMSAxIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InRyYW5zcGFyZW50Ii8+PC9zdmc+');
    content: normal;
}

/* Proteção DevTools - menos intrusiva */
body.dev-tools-open img {
    opacity: 0.7 !important;
    filter: blur(2px) !important;
} 