/* Custom Styles for Conect Gestão */

:root {
    --primary-blue: #1e4a82;
    --secondary-blue: #3a75b2;
    --whatsapp-green: #3e9c35;
    --success-green: #3e9c35; /* Same as WhatsApp green in the image */
    --info-blue: #7ca1c7; /* Lighter blue for the 4th card */
    --dark-bg: #0d1b2a;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1e2a3a;
}

.section-title {
    color: #1e2a3a;
    font-size: 2.5rem;
}

.section-title strong {
    font-weight: 700;
    color: var(--primary-blue);
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.btn-primary-custom:hover {
    background-color: #163a66;
    border-color: #163a66;
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #34822c;
    border-color: #34822c;
    color: white;
    transform: translateY(-2px);
}

.btn-success-custom {
    background-color: var(--success-green);
    border-color: var(--success-green);
    color: white;
}

.btn-info-custom {
    background-color: var(--info-blue);
    border-color: var(--info-blue);
    color: white;
}

/* Sections */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(13, 27, 42, 0.6), rgba(13, 27, 42, 0.6)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-section h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-section p.lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.about-section {
    padding: 100px 0;
}

.about-section p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.services-section {
    padding: 100px 0;
    background-color: #f8faff;
}

.services-section .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
    background: #fff;
}

.services-section .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.services-section .card:hover .service-icon {
    background-color: var(--primary-blue);
}

.services-section .card:hover .service-icon i {
    color: white !important;
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: white;
}

.footer {
    background-color: #0d1b2a;
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo h4 {
    letter-spacing: 2px;
}

.footer ul li a {
    transition: all 0.2s ease;
    opacity: 0.8;
}

.footer ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
}


/* Responsive */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section h2 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
}

