@charset "utf-8";
/* CSS Document */

/* General Body and Typography */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e; /* Dark background */
    color: #e0e0e0; /* Light text */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px;
	text-align: center;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #e94560; /* Highlight color */
    text-align: center;
    margin-bottom: 20px;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }

p {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.1em;
}

a {
    color: #0f3460; /* Accent color for links */
    text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}

/* Header */
header {
    background-color: #091d36; /* Darker blue */
    color: #ffffff;
    padding: 0px 0;
    border-bottom: 4px solid #fff;
}

header .logo {
    font-size: 3em;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

header .tagline {
    font-size: 1.2em;
    margin-top: 5px;
    color: #cccccc;
}

/* Hero Section */
#hero {
    background: linear-gradient(45deg, #1a1a2e, #0f3460);
    padding: 20px 0;
    color: #ffffff;
    text-align: center;
}

#hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero-content .pre-headline {
    font-size: 1.2em;
    color: #e9c045;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

.hero-content h2 {
    font-size: 3em;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: left;
}

.hero-content .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #cccccc;
    text-align: left;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}


.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-primary {
     background-color: #009688;
    color: #ffffff;
    border: 2px solid #ffffff;
	    text-shadow: -1px 2px 0px rgb(0 0 0 / 60%);
}

.btn-primary:hover {
    background-color: #b82a4a;
    border-color: #b82a4a;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: #e94560;
    border: 2px solid #e94560;
}

.btn-secondary:hover {
    background-color: #e94560;
    color: #ffffff;
    text-decoration: none;
}

/* Proof Section */
#proof {
    padding: 10px 0;
    background-color: #16213e; /* Slightly lighter dark blue */
}

#proof h3 {
    color: #ffefbd;
    margin-bottom: 10px;
}

#proof p {
    color: #cccccc;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.metric-card {
    background-color: #0f3460;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #fff;
}

.metric-card .metric-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.metric-card .metric-label {
    font-size: 1em;
    color: #f9ffa9 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-demo {
    background-color: #00bcd4; /* A bright, appealing blue */
    color: #ffffff;
    border: 2px solid #00bcd4;
    padding: 15px 30px;
    font-size: 1.2em;
    margin-top: 30px;
    display: inline-block;
}

.btn-demo:hover {
    background-color: #0097a7;
    border-color: #0097a7;
    text-decoration: none;
}

/* Features Section */
#features {
    padding: 60px 0;
    background-color: #1a1a2e;
}

#features h3 {
    color: #ffefbd;
    margin-bottom: 40px;
}

.feature-table {
    overflow-x: auto; /* Enable horizontal scrolling for tables on small screens */
    margin-top: 30px;
    margin-bottom: 40px;
}

.feature-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Ensure table is wide enough for comparison */
}

.feature-table th, .feature-table td {
    border: 1px solid #0f3460;
    padding: 15px;
    text-align: left;
}

.feature-table th {
    background-color: #0f3460;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
}

.feature-table td {
    background-color: #16213e;
    color: #cccccc;
    vertical-align: top;
    font-size: 0.95em;
}

.feature-table tr:nth-child(even) td {
    background-color: #1a1a2e; /* Alternate row color */
}

.conclusion {
    font-size: 1.2em;
    font-weight: 700;
    color: #f7ea9f !important;
    margin-top: 40px;
}

/* Contact Section */
#contact {
    padding: 10px 0;
    background-color: #0f3460;
    color: #ffffff;
    text-align: center;
  
}

#contact h3 {
    color: #ffffff;
    margin-bottom: 0px;
}

#contact p {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 25px;
}

#contact .cta-message {
    font-size: 1.2em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.3em;
}

.disclaimer {
    font-size: 0.9em;
    margin-top: 20px;
    color: #999999;
}

/* Footer */
footer {
    background-color: #0e172a;
    color: #cccccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.5em; }

    #hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
    }
    .hero-content .pre-headline,
    .hero-content h2,
    .hero-content .hero-description {
        text-align: center;
    }
    .cta-buttons {
        justify-content: center;
    }

    .performance-grid {
        grid-template-columns: 1fr;
    }

    .feature-table th, .feature-table td {
        font-size: 0.9em;
        padding: 10px;
    }

    .btn-lg {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn {
        width: 100%;
        max-width: 280px; /* Limit width of stacked buttons */
        margin: 0 auto;
    }
}


/* Regla 1: Hace la imagen responsiva */
.centered-img_logo {
    /* Asegura que la imagen nunca exceda el ancho de su contenedor */
    max-width: 100%; 
    /* Permite que la altura se ajuste proporcionalmente para evitar distorsión */
    height: auto; 
    
    /* Regla 2: Centrado horizontal usando block display y auto margins */
    display: block; 
    margin-left: auto;
    margin-right: auto;
    
    /* Opcional: Centrado dentro de un contenedor de texto, si aplica */
    text-align: center; /* Esto solo funciona si el padre es un contenedor de texto */
}