/* ========================================
   CORES RECOMENDADAS PELO MANUAL DA MARCA
   ======================================== */

:root {
    /* Cores Principais da Marca - Manual Oficial */
    --cor-primaria: #705D96;      /* Roxo principal - CMYK: C64-M74-Y9-K0, RGB: R112-G93-B150 */
    --cor-secundaria: #6C5297;    /* Roxo secundário - CMYK: C84-M83-Y73-K80, RGB: R108-G82-B151 */
    --cor-terciaria: #2C2B2B;     /* Cinza escuro - CMYK: C82-M50-Y70-K53, RGB: R44-G43-B43 */
    --cor-accent: #000000;        /* Preto - CMYK: C0-M0-Y0-K0, RGB: R0-G0-B0 */
    
    /* Cores Neutras */
    --cor-branco: #FFFFFF;        /* Branco - CMYK: C0-M0-Y0-K0, RGB: R255-G255-B255 */
    --cor-preto: #000000;         /* Preto - CMYK: C0-M0-Y0-K0, RGB: R0-G0-B0 */
    --cor-cinza-claro: #F5F5F5;
    --cor-cinza-medio: #9E9E9E;
    --cor-cinza-escuro: #2C2B2B;  /* Usando a cor oficial do manual */
    
    /* Cores de Fundo */
    --bg-primario: #FFFFFF;
    --bg-secundario: #FAFAFA;
    --bg-escuro: #2C2B2B;         /* Usando cor oficial do manual */
    --bg-card: #FFFFFF;
    
    /* Cores de Texto */
    --texto-primario: #2C2B2B;    /* Usando cor oficial do manual */
    --texto-secundario: #757575;
    --texto-claro: #FFFFFF;
    --texto-destaque: #705D96;    /* Usando cor primária oficial */
    
    /* Cores de Status */
    --sucesso: #4CAF50;
    --aviso: #FF9800;
    --erro: #F44336;
    --info: #2196F3;
    
    /* Gradientes */
    --gradiente-principal: linear-gradient(135deg, #705D96, #6C5297);
    --gradiente-secundario: linear-gradient(135deg, #6C5297, #2C2B2B);
    --gradiente-accent: linear-gradient(135deg, #000000, #705D96);
    
    /* Sombras */
    --sombra-suave: 0 2px 10px rgba(0,0,0,0.1);
    --sombra-media: 0 5px 20px rgba(0,0,0,0.15);
    --sombra-forte: 0 10px 30px rgba(0,0,0,0.2);
    --sombra-colorida: 0 5px 20px rgba(112,93,150,0.3);  /* Usando cor primária oficial */
}

/* ========================================
   APLICAÇÃO DAS CORES NO SITE
   ======================================== */

/* ========================================
   TIPOGRAFIA OFICIAL DA MARCA
   ======================================== */

/* Importação das fontes oficiais */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

/* Fonte Aller para logo (será carregada localmente) */
@font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller_Rg.woff2') format('woff2'),
         url('../fonts/Aller_Rg.woff') format('woff'),
         url('../fonts/Aller_Rg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller_Bd.woff2') format('woff2'),
         url('../fonts/Aller_Bd.woff') format('woff'),
         url('../fonts/Aller_Bd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    background: var(--bg-primario);
    color: var(--texto-primario);
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradiente-principal);
    box-shadow: var(--sombra-media);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    width: 120px;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--cor-branco);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--cor-branco);
    transition: 0.3s;
    border-radius: 2px;
}

/* Animação do hamburger quando ativo */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - Ajustado para evitar conflitos com CSS inline */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradiente-principal);
    /* padding-top será definido no CSS inline para compensar header fixo */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cor-branco);
    max-width: 800px;
    padding: 0 20px;
    /* Estilos específicos serão sobrescritos pelo CSS inline */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: #25d366;
    color: var(--cor-branco);
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.6);
    background: #20ba5a;
    color: var(--cor-branco);
}

/* Sections */
.section {
    padding: 80px 0;
    background: var(--bg-primario);
}

.section:nth-child(even) {
    background: var(--bg-secundario);
}

.section h2 {
    text-align: center;
    color: var(--cor-primaria);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Equipment Cards - Padrão SelfieBox */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
    align-items: stretch;
}

.equipment-card {
    background: var(--bg-primario);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: all 0.3s ease;
    border: 1px solid rgba(112,93,150,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradiente-principal);
    z-index: 2;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
    border-color: rgba(112,93,150,0.2);
    text-decoration: none;
    color: inherit;
}

.equipment-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--bg-secundario);
    transition: transform 0.3s ease;
    position: relative;
}

.equipment-card:hover img {
    transform: scale(1.05);
}

.equipment-content {
    padding: 12px 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    justify-content: space-between;
}

.equipment-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 54px;
    max-height: 54px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-size: 0.75rem;
    color: var(--texto-secundario);
}

.equipment-badge {
    display: inline-block;
    background: var(--gradiente-principal);
    color: var(--cor-branco);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--sombra-colorida);
    align-self: center;
}

.equipment-content h3 {
    color: var(--cor-primaria);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    text-align: center;
}

.equipment-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background: var(--gradiente-principal);
    border-radius: 2px;
}

.equipment-content p {
    color: var(--texto-secundario);
    line-height: 1.4;
    font-size: 0.75rem;
    flex: 1;
    margin-bottom: 8px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 45px;
}



/* Botão "Ver Detalhes" centralizado */
.equipment-card .ver-detalhes-btn {
    background: var(--gradiente-principal);
    color: var(--cor-branco);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    align-self: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: var(--sombra-colorida);
}

.equipment-card .ver-detalhes-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(112,93,150,0.4);
    text-decoration: none;
    color: var(--cor-branco);
}

.equipment-card .ver-detalhes-btn i {
    font-size: 0.8rem;
}

/* Diferenciais Grid - MELHORADO */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.diferencial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,248,252,0.95) 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(112,93,150,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(112,93,150,0.08);
    position: relative;
    backdrop-filter: blur(10px);
    min-height: 380px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradiente-principal);
    border-radius: 24px 24px 0 0;
}

.diferencial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(112,93,150,0.25);
    border-color: rgba(112,93,150,0.2);
}

.diferencial-icon-container {
    height: 110px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: var(--gradiente-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(112,93,150,0.3);
    transition: all 0.3s ease;
    align-self: center;
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(112,93,150,0.4);
}

.diferencial-card h3, .diferencial-card p {
    text-align: center;
}

.diferencial-icon {
    margin-bottom: 25px;
    align-self: center;
}

.diferencial-card h3 {
    color: var(--cor-primaria);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.diferencial-card p {
    color: var(--texto-secundario);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Testimonials - CORRIGIDO */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--sombra-suave);
    border-left: 5px solid var(--cor-primaria);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-colorida);
}

.testimonial p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--texto-secundario);
    font-size: 1.1rem;
    flex: 1;
}

.testimonial span {
    color: var(--cor-primaria);
    font-weight: 700;
    font-size: 1rem;
}

/* Contact Cards - CORRIGIDO */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 35px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--sombra-suave);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-colorida);
}

.contact-card i {
    font-size: 2.8rem;
    color: var(--cor-primaria);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--texto-primario);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: var(--texto-secundario);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--bg-escuro);
    color: var(--cor-branco);
    padding: 50px 0 20px;
}

.footer-content {
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-link {
    color: var(--cor-branco);
    font-size: 1.5rem;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--cor-primaria);
    transform: translateY(-3px);
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--cor-branco);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: var(--gradiente-principal);
    color: var(--cor-branco);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--sombra-media);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--texto-primario);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--cor-cinza-claro);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--bg-primario);
    color: var(--texto-primario);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(112,93,150,0.1);
}

.submit-btn {
    background: var(--gradiente-principal);
    color: var(--cor-branco);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--sombra-colorida);
}

/* Responsive Design - MELHORADO */
@media (max-width: 1200px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 900px;
        min-height: 550px;
    }
    
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        max-width: 900px;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        max-width: 900px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero content será controlado pelo CSS inline para melhor responsividade */
    
    .section h2 {
        font-size: 2rem;
    }
    
    /* Menu Mobile Melhorado */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.95);
        padding: 20px;
        gap: 15px;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Grids Mobile */
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
        min-height: 650px;
    }
    
    .testimonials,
    .diferenciais-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .equipment-card,
    .testimonial,
    .contact-card {
        max-width: 100%;
    }
    
    .equipment-content,
    .testimonial,
    .contact-card {
        padding: 20px;
    }
    

    
    .equipment-content h3 {
        font-size: 1.2rem;
    }
    
    .equipment-features li {
        font-size: 0.85rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    /* Hero content será controlado pelo CSS inline para melhor responsividade */
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 12px;
        min-height: 1000px;
    }
    
    .equipment-content,
    .testimonial,
    .contact-card {
        padding: 20px;
    }
    

    
    .equipment-content h3 {
        font-size: 1.3rem;
    }
    
    .equipment-features li {
        font-size: 0.8rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
    }
    
    .diferencial-card {
        padding: 35px 25px;
    }
    
    .diferencial-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .diferencial-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 1200px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .diferencial-card {
    min-height: 340px;
    padding: 30px 18px;
  }
  .diferencial-icon-container {
    height: 90px;
  }
  .diferencial-icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }
}

@media (max-width: 700px) {
  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .diferencial-card {
    min-height: 0;
    padding: 22px 10px;
  }
  .diferencial-icon-container {
    height: 60px;
  }
  .diferencial-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  .diferencial-card h3 {
    font-size: 1.1rem;
  }
  .diferencial-card p {
    font-size: 0.95rem;
  }
}

/* ========================================
   CLASSES DE TIPOGRAFIA OFICIAL
   ======================================== */

/* Fonte Aller para logo e elementos especiais */
.font-aller {
    font-family: 'Aller', sans-serif;
}

.font-aller-bold {
    font-family: 'Aller', sans-serif;
    font-weight: bold;
}

/* Fonte Raleway para textos gerais */
.font-raleway {
    font-family: 'Raleway', sans-serif;
}

.font-raleway-light {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
}

.font-raleway-regular {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

.font-raleway-medium {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.font-raleway-semibold {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.font-raleway-bold {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.font-raleway-extrabold {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
}

.font-raleway-black {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-50 { padding: 50px; }

/* Status Colors */
.status-ativo {
    background: var(--sucesso);
    color: var(--cor-branco);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-inativo {
    background: var(--erro);
    color: var(--cor-branco);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
} 

.equipment-main-image {
    width: 100% !important;
    height: 920px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(112,93,150,0.18) !important;
    display: block !important;
    max-width: 100% !important;
    min-height: unset !important;
    max-height: unset !important;
}

/* Estilos para links de contato */
.contact-details a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-details a:hover {
    color: var(--cor-primaria);
    transform: translateY(-2px);
}

.contact-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-primaria);
    transition: width 0.3s ease;
}

.contact-details a:hover::after {
    width: 100%;
}

/* Efeito especial para WhatsApp */
.contact-item:nth-child(2) .contact-details a:hover {
    color: #25d366;
}

.contact-item:nth-child(2) .contact-details a::after {
    background: #25d366;
}

/* Efeito especial para email */
.contact-item:nth-child(3) .contact-details a:hover {
    color: #007bff;
}

.contact-item:nth-child(3) .contact-details a::after {
    background: #007bff;
}

/* Redes sociais no header */
.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.header-social-link {
    color: var(--cor-branco);
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.header-social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: var(--cor-branco);
}

/* Responsividade para redes sociais no header */
@media (max-width: 768px) {
    .header-social {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
    }
} 