/* Base e Reset */
:root {
  --primary-color: #0052cc;
  --secondary-color: #00a8e8;
  --accent-color: #f58220;
  --text-color: #333333;
  --text-light: #777777;
  --background-color: #ffffff;
  --background-light: #f5f9ff;
  --background-dark: #143055;
  --border-color: #e0e0e0;
  --success-color: #2ecc71;
  --error-color: #e74c3c;
  --warning-color: #f39c12;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #0044a9;
  color: white;
}

.btn-secondary {
  background-color: var(--background-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-tertiary {
  background-color: #f2f2f2;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
  background-color: #e5e5e5;
}

/* Header e Navegação */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  border-radius: 50%;
}

.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background-color: var(--background-light);
  padding: 5rem 0;
  text-align: center;
  background-image: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 168, 232, 0.05) 100%);
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: var(--background-dark);
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Featured Posts */
.featured-posts {
  padding: 5rem 0;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.post-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-content h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  align-self: flex-start;
}

.read-more:hover {
  color: var(--secondary-color);
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Newsletter */
.newsletter {
  background-color: var(--background-dark);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

#newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 1rem;
}

#newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

#newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.subscriber-count {
  font-size: 0.9rem;
  opacity: 0.8;
}

#subscriber-count {
  font-weight: 700;
  color: var(--accent-color);
}

/* Footer */
footer {
  background-color: #f8f9fa;
  padding: 5rem 0 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--text-light);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.footer-contact svg {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.social-media {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  margin: 0 0.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.social-media a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

/* Blog Page */
.page-header {
  background-color: var(--background-light);
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
}

.blog-content {
  padding: 0 0 5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 100%;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.blog-text {
  padding: 2rem 2rem 2rem 0;
}

.blog-text .date {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-text h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* About Page */
.about-content {
  padding: 0 0 5rem;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.about-intro p {
  margin-bottom: 1.5rem;
}

.about-intro ul {
  margin-bottom: 2rem;
}

.about-intro ul li {
  margin-bottom: 0.5rem;
}

.team-section {
  text-align: center;
  margin-bottom: 4rem;
}

.team-section h2 {
  margin-bottom: 1rem;
}

.team-section > p {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-card h3 {
  margin: 1.5rem 0 0.25rem;
  font-size: 1.25rem;
}

.team-card p {
  margin: 0 1rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.team-card p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  margin: 0 0 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: var(--primary-color);
  margin: 0 0.25rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.testimonials {
  background-color: var(--background-light);
  padding: 5rem 0;
  margin: 3rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  position: relative;
}

.quote {
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.testimonial p {
  margin: 1rem 0 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.author {
  display: flex;
  flex-direction: column;
}

.author strong {
  color: var(--text-color);
}

.author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact Page */
.contact-content {
  padding: 0 0 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.icon {
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--background-light);
  border-radius: 50%;
  color: var(--primary-color);
}

.info-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.info-text p {
  color: var(--text-light);
  margin: 0;
}

.social-contact h3 {
  margin: 2rem 0 1rem;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: var(--primary-color);
  margin-right: 0.75rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-form h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check input {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.form-check label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.form-check a {
  text-decoration: underline;
}

.map-section {
  margin-top: 3rem;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.map-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal-icon {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.modal h2 {
  margin-top: 0;
}

.close-btn {
  margin-top: 1.5rem;
}

/* Blog Post */
.blog-post {
  padding: 3rem 0;
}

.post-header {
  margin-bottom: 3rem;
}

.post-header h1 {
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.post-banner {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
  border-left: 3px solid var(--primary-color);
  padding-left: 1.5rem;
}

.post-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--background-dark);
}

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--background-dark);
}

.post-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content a {
  text-decoration: underline;
}

.post-content blockquote {
  background-color: var(--background-light);
  border-left: 3px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.post-content blockquote p {
  margin: 0;
}

.post-tags {
  margin: 3rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.post-tags span {
  margin-right: 1rem;
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  background-color: var(--background-light);
  color: var(--text-color);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.share-post {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
}

.share-post span {
  margin-right: 1rem;
  font-weight: 600;
}

.share-post a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 0.75rem;
  transition: var(--transition);
}

.share-facebook {
  background-color: #3b5998;
  color: white;
}

.share-twitter {
  background-color: #1da1f2;
  color: white;
}

.share-linkedin {
  background-color: #0077b5;
  color: white;
}

.share-whatsapp {
  background-color: #25d366;
  color: white;
}

.share-post a:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.related-posts {
  margin-top: 5rem;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.related-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-card h4 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
}

.related-card .read-more {
  padding: 0 1rem 1rem;
  display: block;
}

/* Course cards for posts */
.course-card {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  overflow: hidden;
}

.course-details {
  flex: 2;
  padding: 1.5rem;
}

.course-details h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.course-details ul {
  margin-bottom: 1.5rem;
}

.course-details p {
  margin-bottom: 0.5rem;
}

.course-details .btn {
  margin-top: 1rem;
}

.course-review {
  flex: 1;
  padding: 1.5rem;
  background-color: var(--background-light);
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.star {
  font-size: 1.2rem;
}

.certification-costs {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.certification-costs th, .certification-costs td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.certification-costs th {
  background-color: var(--background-light);
  font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-content a {
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image img {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    height: 300px;
  }
  
  .blog-text {
    padding: 2rem;
  }
  
  .course-card {
    flex-direction: column;
  }
  
  .course-review {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .featured-posts, .blog-content, .about-content, .contact-content {
    padding: 3rem 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  #newsletter-form {
    flex-direction: column;
  }
  
  #newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  #newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .post-banner {
    height: 250px;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 0.75rem 0.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}
