.elementor-2110 .elementor-element.elementor-element-9ac6a91{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-2110 .elementor-element.elementor-element-9ac6a91.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2110 .elementor-element.elementor-element-5b80131{width:100%;max-width:100%;}.elementor-2110 .elementor-element.elementor-element-5b80131 > .elementor-widget-container{padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-2110 .elementor-element.elementor-element-9ac6a91{--width:100.449%;}}/* Start custom CSS */:root {
    --brand-primary: #212843; /* Azul Marinho (Cor principal das letras e gradientes) */
    --brand-secondary: #000000; /* Preto (Cor secundária informada) */
    --brand-accent: #000000; /* Preto (Para compor gradientes com o azul) */
    
    --bg-light: #d9d9d9; /* Cinza mais claro (Fundo) */
    --text-main: #212843; /* Azul Marinho (Cor principal das letras) */
    --text-muted: #3b4363; /* Tom levemente mais claro do azul para variações */
    --text-light: #ffffff; /* Branco (Cor secundária das letras) */
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Variaveis para manter o botão original intacto */
    --btn-bg-color: #DCC7AA;
    --btn-text-color: #755C5D;
}

/* ==========================================================================
   RESET & GLOBAL
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-primary);
}

ul {
    list-style: none;
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   GLASSMORPHISM & ANIMATED BACKDROPS 
   ========================================================================== */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: float 10s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--brand-secondary);
    top: -100px;
    left: -200px;
    border-radius: 50%;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: var(--brand-accent);
    top: 400px;right: -250px;
    border-radius: 50%;
    animation-delay: 2s;
    opacity: 0.4;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(30px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

.glass-card {
    background: rgba(220, 199, 170, 0.15); /* Cor de fundo suave (Areia) para contrastar com tela branca */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(117, 92, 93, 0.4); /* Borda elegante alinhada com as cores e regra premium */
    box-shadow: 0 10px 25px rgba(117, 92, 93, 0.08);
}

.glass-card-solid {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    box-shadow: 0 8px 32px 0 rgba(117, 92, 93, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* NAV */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 45px;
    object-fit: contain;
}

.btn-outline {
    border: 2px solid var(--btn-text-color);
    color: var(--btn-text-color);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--btn-text-color);
    color: #fff;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--btn-bg-color), #CDA98B);
    color: var(--btn-text-color);
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(220, 199, 170, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(220, 199, 170, 0.6);
}

.badge {
    display: inline-block;
    background: rgba(117, 92, 93, 0.1);
    color: var(--brand-primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

/* HERO */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    border-bottom: 1px solid rgba(117, 92, 93, 0.1);
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://grupocamillaterra.com.br/wp-content/uploads/2026/05/hero_corporate_background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--brand-primary);
}

.hero-section .subtitle {
    color: var(--brand-accent);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-section .hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

/* INTRO */
.intro-section {
    margin-top: 20px; 
    padding: 80px 60px; 
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 20;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.profile-media {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(117, 92, 93, 0.15);
    border: 4px solid #fff;
    transition: transform 0.4s;
}

.profile-media:hover {
    transform: scale(1.02);
}

.intro-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.highlight-quote {
    margin-top: 30px;
    padding: 24px;
    border-left: 5px solid var(--brand-secondary);
    background: rgba(220, 199, 170, 0.1);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--brand-primary);
    font-family: var(--font-heading);
}

.intro-differentiators {
    margin-top: 40px;
    padding: 40px;
    border-radius: var(--radius-lg);
}

.intro-differentiators h4 {
    color: var(--brand-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.intro-differentiators ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.intro-differentiators ul li {
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.intro-differentiators ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-accent);
    font-weight: bold;
}

/* CARDS E PILARES */
.pilares-section {
    padding: 120px 0;
}

.section-headers {
    text-align: center;
    margin-bottom: 80px;
}

.section-headers h2 {
    font-size: 3rem;
}

.section-headers p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* CAROUSEL DOM */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--brand-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(117, 92, 93, 0.3);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--brand-secondary);
    color: var(--brand-primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

.premium-card {
    flex: 0 0 calc(50% - 15px); /* Mostra 2 cards por tela, descontando o gap */
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(117, 92, 93, 0.15);
}

.card-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-secondary);
    opacity: 0.9;
    font-family: var(--font-heading);
    margin-bottom: -10px;
}

.premium-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.premium-card hr {
    border: 0;
    height: 2px;
    background: rgba(117, 92, 93, 0.1);
    margin: 20px 0;
}

.card-highlight hr {
    background: rgba(255,255,255,0.2);
}

.card-highlight h3, .card-highlight p {
    color: white;
}

.card-highlight .card-number {
    color: var(--btn-bg-color);
}

.premium-card ul {
    flex-grow: 1;
}

.premium-card ul li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.premium-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-secondary);
    font-weight: bold;
}

.card-highlight ul li::before {
    color: #fff;
}

.card-footer {
    display: inline-block;
    margin-top: 25px;
    background: rgba(117, 92, 93, 0.05);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-align: center;
}

.card-highlight .card-footer {
    background: rgba(255,255,255,0.15);
    color: white;
}

/* PÚBLICO ALVO E RESULTADOS */
.target-results-section {
    padding: 0 5% 100px;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.target-box {
    padding: 50px;
    border-radius: var(--radius-lg);
}

.accent-border {
    border-left: 8px solid var(--brand-secondary);
}

.target-box h3 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.target-box ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(117, 92, 93, 0.1);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
}

.target-box ul li::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--brand-secondary);
    border-radius: 50%;
    margin-right: 15px;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border-top: 6px solid var(--brand-secondary);
    padding: 50px;
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid rgba(117, 92, 93, 0.2);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--brand-accent);
    margin: 15px 0;
}

.pricing-features h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--brand-primary);
}

.pricing-features ul li {
    padding: 15px 0;
    border-bottom: 1px dashed rgba(117, 92, 93, 0.15);
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--brand-secondary);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.4rem;
    line-height: 1;
}

/* CTA FINAL */
.cta-section {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: white;
    padding: 120px 0;
    position: relative;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section .subtitle { font-size: 1.2rem; }
    .section-headers h2 { font-size: 1.85rem; }
    .premium-card { flex: 0 0 100%; }
    .intro-grid { grid-template-columns: 1fr; }
    .target-grid { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 1.7rem; }
}/* End custom CSS */