:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    /*--bg-gradient: linear-gradient(135deg, #ff8c00, #f39c12, #e67e22);*/
    --bg-gradient: linear-gradient(235deg, #1e5799, #e67e22);
    /*1e5799*/
    --text: #2c3e50;
    --light: #fff;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    --success: #27ae60;
    --whatsapp: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    color: var(--text);
    line-height: 1.7;
    padding: 20px 10px;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    background: var(--light);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
    padding-bottom: 100px; /* Espaço para o rodapé fixo */
}

/* === LOGO === */
.logo-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 180px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.logo:hover { transform: scale(1.05); }

h1, h2, h3 { color: var(--primary-dark); margin-bottom: 15px; }
h1 {
    font-size: 2.3rem;
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}
h1 small {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: normal;
    margin-top: 8px;
}
h2 {
    font-size: 1.5rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 8px;
    margin-bottom: 18px;
}

/* === EQUIPAMENTOS === */
.equipamentos { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 15px; }
.equipamento {
    display: flex; gap: 18px; background: #f9f9f9; padding: 18px; border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: all 0.3s ease; align-items: flex-start;
}
.equipamento:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.12); }
.equipamento img {
    width: 120px; height: 120px; object-fit: contain; border-radius: 10px;
    background: #fff; padding: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); flex-shrink: 0;
}
.equipamento h3 { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 8px; }
.equipamento p { font-size: 0.95rem; color: #444; }

/* === LOCALIZAÇÃO === */
.localizacao { text-align: center; }
.localizacao img { width: 100%; max-width: 320px; border-radius: 12px; margin: 18px 0; box-shadow: var(--shadow); }

/* === DESTAQUE === */
.highlight {
    background: linear-gradient(120deg, #fdf5e6, #fef9e7);
    padding: 20px; border-radius: 12px; border-left: 5px solid var(--primary);
    margin: 20px 0; font-style: italic; color: #5d4037;
}

.logo-title { font-weight: 800; color: var(--primary-dark); }

/* === RODAPÉ DE CONTATO === */
.footer-contact {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #e67e22, #1e5799, #e67e22);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer-contact h2 {
    color: white;
    border-bottom: 3px solid rgba(255,255,255,0.4);
    display: inline-block;
    padding-bottom: 8px;
    font-size: 1.6rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 16px;
    border-radius: 50px;
    transition: 0.3s;
    min-width: 220px;
}

.contact-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover { text-decoration: underline; }

.slogan {
    font-style: italic;
    margin-top: 15px;
    opacity: 0.9;
    font-size: 1rem;
}

/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* === RESPONSIVO === */
@media (max-width: 992px) {
    .container { grid-template-columns: 1fr; padding: 25px; padding-bottom: 90px; }
    .contact-info { flex-direction: column; align-items: center; }
    .contact-item { min-width: 260px; }
}

@media (max-width: 600px) {
    body { padding: 10px; }
    .container { padding: 20px; padding-bottom: 80px; }
    h1 { font-size: 1.8rem; }
    .equipamento { flex-direction: column; text-align: center; }
    .equipamento img { margin: 0 auto; }
    .logo { width: 140px; }
    .footer-contact h2 { font-size: 1.4rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 15px; right: 15px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
}