/* --- VARIABLES Y RESETEO GENERAL --- */
:root {
    --primary-color: #0052cc; /* Un azul corporativo fuerte */
    --secondary-color: #ffab00; /* Un acento naranja/amarillo para CTAs */
    --dark-color: #001f3f; /* Azul oscuro para fondos y texto */
    --light-color: #f8f9fa; /* Gris claro para fondos de sección */
    --text-color: #333;
    --white-color: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
p { margin-bottom: 1rem; }

img {
    max-width: 100%;
    border-radius: 8px;
}

/* --- BARRA DE NAVEGACIÓN --- */
.navbar {
    background: var(--white-color);
    color: var(--text-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background-color 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
}

.logo img {
	    height: 100%;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar nav ul li a {
    color: var(--text-color);
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.navbar nav ul li a:hover {
    color: var(--primary-color);
}

.btn-contact-nav {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.btn-contact-nav:hover {
    background-color: #003366;
    color: var(--white-color) !important;
}

/* --- SECCIÓN HERO --- */
.hero {
    background: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)), url('https://growthpartner.com.ar/img/ciudad_futurista_completa.png') no-repeat center center/cover;
    height: 100vh;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.0rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background: #003366;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--white-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* --- ESTILOS DE SECCIONES GENERALES --- */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--dark-color);
}

.section-header p {
    max-width: 600px;
    margin: auto;
    color: #666;
}

.content-section {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.content-section .text-content, .content-section .image-content {
    flex: 1;
}

.bg-light { background-color: var(--light-color); }
.bg-dark {
    background-color: var(--dark-color);
    color: var(--white-color);
}
.bg-dark .section-header h2, .bg-dark .section-header p {
    color: var(--white-color);
}

/* --- SECCIÓN SERVICIOS --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* --- SECCIÓN DIFERENCIAS --- */
.comparison-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.comparison-text { flex: 1; }
.comparison-image { flex: 1; text-align: center; }
.comparison-text h3 { color: var(--primary-color); }

/* --- SECCIÓN PARA QUIÉN ES --- */
.checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    margin-bottom: 2rem;
}

.check-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.final-text {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- SECCIÓN CONTACTO --- */
.contact-form {
    max-width: 800px;
    margin: auto;
}

.contact-form .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
    margin-bottom: 1rem;
}

.contact-form button {
    width: 40%;
    border: none;
    cursor: pointer;
}

/* --- FOOTER --- */
footer {
    background: var(--dark-color);
    color: var(--white-color);
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: var(--white-color);
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.footer-nav a {
    color: var(--white-color);
    text-decoration: none;
    margin: 0 10px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVIDAD --- */
@media(max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

		section {  padding: 230px 0;}

    .navbar .container { flex-direction: column; }
    .navbar nav ul { margin-top: 1rem; }
    .navbar nav ul li a { padding: 0.5rem; }

    .hero { height: auto; padding: 120px 20px 60px; }
    .hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
    .hero-buttons .btn-secondary { margin-left: 0; }
    
    .content-section, .comparison-content {
        flex-direction: column;
    }
    .content-section .image-content { margin-top: 2rem; }
    
    .services-grid { grid-template-columns: 1fr; }
    .checklist { grid-template-columns: 1fr; }
    .contact-form .form-group { grid-template-columns: 1fr; }
    
		.contact-form button {width: 80%;border: none;cursor: pointer;}
    
}

/* --- ESTILOS PARA MENSAJES DE FORMULARIO --- */
#form-status-message {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.success-message {
    color: #28a745; /* verde */
    background-color: #e9f7eb;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #28a745;
}
.error-message {
    color: #dc3545; /* rojo */
    background-color: #f8d7da;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #dc3545;
}