/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h4 {
    color: #003366;
    font-weight: 700;
}

/* Header */
header {
    background: linear-gradient(135deg, #003366, #0055b3);
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

header .logo {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

header .logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 85, 179, 0.9)), url('hero-bg.jpg');
    background-size: cover;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {

    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero .btn-primary {
    background-color: #ffcc00;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: #ff9900;
    color: #fff;
}

/* Benefits Section */
.benefits {
    background-color: #f0f4f8;
    padding: 3rem 0;
}

.benefits .icon-large {
    font-size: 3rem;
    color: #003366;
    transition: transform 0.3s ease;
}

.benefits .icon-large:hover {
    transform: scale(1.2);
    color: #0055b3;
}

.benefits h4 {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #0055b3;
}

.benefits p {
    color: #666;
    font-size: 1rem;
}

/* Products Section */
.products {
    padding: 3rem 0;
    background: #fff;
}

.products h2 {
    margin-bottom: 2rem;
}

.products h4 {
    color: #003366;
    font-size: 1.1rem;
    font-weight: bold;
}

.products p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #0055b3, #003366);
    color: #fff;
    padding: 3rem 0;
}

.testimonials h2 {
    color: #ffcc00;
    margin-bottom: 2rem;
}

.testimonials blockquote {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffcc00;
    padding: 1.5rem;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonials footer {
    color: #ffcc00;
    font-weight: bold;
}

/* Contact Form Section */
.contact {
    background: #003366;
    color: #fff;
    padding: 3rem 0;
    position: relative;
    text-align: center;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    animation: moving-gradient 3s linear infinite;
}

@keyframes moving-gradient {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
}

.contact input, .contact button {
    max-width: 100%;
    border-radius: 30px;
    margin-bottom: 1rem;
    padding: 0.75rem;
}

.contact input {
    border: 2px solid #0055b3;
    transition: border 0.3s ease;
}

.contact input:focus {
    border-color: #ffcc00;
    outline: none;
}

.contact button {
    background: #ffcc00;
    color: #003366;
    font-weight: bold;
    border: none;
    padding: 0.8rem 1.5rem;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #ff9900;
    color: #fff;
}

/* Footer */
footer {
    background: #001a33;
    color: #ccc;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

footer p a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer p a:hover {
    color: #ff9900;
}

/* Additional Styling */
.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #003366;
    position: relative;
}.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    border-radius: 30px;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: #fff;
}


.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ffcc00;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
/* Botão Flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    font-size: 1.8rem;
}
/* Estilo do formulário de contato */
.wpcf7 form {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.wpcf7 .form-group {
    margin-bottom: 1.5rem;
}

.wpcf7 label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
}

.wpcf7 .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.wpcf7 .form-group.col-md-6 {
    flex: 0 0 48%;
}

.wpcf7 .btn-primary {
    background-color: #25D366;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    color: #fff;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    cursor: pointer;
}

.wpcf7 .btn-primary:hover {
    background-color: #1ebe57;
}
